No commit activity in last 3 years
No release in over 3 years
Find your contribution in github in Ruby.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 10.1.1
>= 0

Runtime

 Project Readme

Github Contributions

This Gem is used to find User Contributions list

github-contribution can be used from the command line or as part of a Ruby web framework.

Installation

To install the gem using terminal, run the following command:

gem install github-contributions

To use it in rails application add the gem to the Gemfile:

gem "github-contributions"    

Basic Usage

github-contributions can simply import or export issues from an Excel file.:

require 'github-contributions'
require 'github_api'

your_github_username = '***********'
your_github_password = '***********'

connection = Github.new(basic_auth: "#{your_github_username}:#{your_github_password}")

# The List Module will fetch all the repositories to which you have contributed.

Github::Contributions::List.new(connection,your_github_username).list

Contributing

Contributions are welcomed. You can fork a repository, add your code changes to the forked branch, ensure all existing unit tests pass, create new unit tests cover your new changes and finally create a pull request.

After forking and then cloning the repository locally, install Bundler and then use it to install the development gem dependecies:

gem install bundler
bundle install

github-contributions this is complete, you should be able to run the test suite:

rake spec

Bug Reporting

Please use the Issues page to report bugs or suggest new enhancements.