Project

gitget

0.0
No commit activity in last 3 years
No release in over 3 years
Extracts developer statistics
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.8
~> 4.4
~> 5.9
~> 11.3
~> 0.42
~> 0.12
~> 3.0
~> 2.1

Runtime

 Project Readme

Build Status
Gem Version

gitget gem

Gitget is a gem that specializes in getting developers and their repository data on Github.

Installation

If you are working on a project, add this to your Gemfile: gem 'gitget'

For ad hoc installation from command line:

$ gem install gitget

Setup Github Credentials

Please setup your your github personal API token https://github.com/settings/tokens

Usage

Require Gitget gem in your code: require 'gitget'

Supply your Github credentials to our library in one of two ways:

  • Setup environment variables: ENV['GH_USERNAME'] and ENV['GH_TOKEN']
  • or, provide them directly to Gitget:
Github::API.config = { username: ENV['GH_USERNAME'],
                       token: ENV['GH_TOKEN'] }