github-trending
github-trending
is a gem that fetches Trending repositories on GitHub. It's functionality was extracted from the command-line utility git-trend
, so almost all of the code is written by @rochefort.
Installation
Add this line to your application's Gemfile:
gem 'github-trending', github: 'sheharyarn/github-trending'
And then execute:
$ bundle
Or install it yourself as:
$ gem install github-trending
Usage
Require it if you haven't:
require 'github-trending'
Get the day's trending repos:
repos = Github::Trending.get
repos.each do |r|
puts "#{r.name} (#{r.star_count} stargazers)"
puts "--- #{r.description}\n\n"
end
# =>
# sindresorhus/awesome-nodejs (712 stargazers)
# --- A curated list of delightful Node.js packages and resources.
#
# MrSwitch/hello.js (536 stargazers)
# --- A Javascript RESTFUL API library for connecting with OAuth2 services, such as Google+ API, Facebook Graph # and Windows Live Connect
#
# ColdSauce/CosmosBrowserAndroid (391 stargazers)
# --- Cosmos Browser allows a person to connect to the internet through the use of SMS. No data or wifi required.
#
# ...
You can also fetch by a specific language:
ruby_repos = Github::Trending.get :ruby
objc_repos = Github::Trending.get :objective_c
To get a list of all languages:
languages = Github::Trending.languages
You can get top github repos of the :week
and :month
as well (default is :day
):
Github::Trending.get(:scala, :week)
# Top scala repos in the week
Github::Trending.get(nil, :month)
# Top repos (all languages) in this month
Github::Trending.get('objective-c++', 'day')
# Can pass strings as well
Contributing
- Fork it ( https://github.com/sheharyarn/github-trending/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request