Skip to content

Instantly share code, notes, and snippets.

@timgluz
Last active January 1, 2016 20:39
Show Gist options
  • Select an option

  • Save timgluz/8198475 to your computer and use it in GitHub Desktop.

Select an option

Save timgluz/8198475 to your computer and use it in GitHub Desktop.
Top10 Github pushes for Ruby projects
Row repository_name pushes repository_description repository_url
1 Specs 8336 A repository of CocoaPods (cocoapods.org) specifications. https://github.com/CocoaPods/Specs
2 www.cogent.co 7591 Cogent website https://github.com/cogent/www.cogent.co
3 showcase 6529 Deploy your Rails app straight from GitHub to Heroku in a single click, or continuously triggered by your CI. This is an example application for continuous deployment via Travis CI. https://github.com/koideploy/showcase
4 github-hooks-test 6473 https://github.com/lingohub/github-hooks-test
5 whitehall 6344 Inside Government: how the UK Government works, what it's doing, and how you can get involved. https://github.com/alphagov/whitehall
6 emoticommits 5986 Commits and comments with emotions are good for your health 😄 https://github.com/zunda/emoticommits
7 homebrew 5807 The missing package manager for OS X. https://github.com/mxcl/homebrew
8 ruby 4436 The Ruby Programming Language https://github.com/ruby/ruby
9 rails 4203 Ruby on Rails https://github.com/rails/rails
10 openproject 3449 OpenProject is a web based project management system built on Ruby on Rails https://github.com/opf/openproject
@timgluz
Copy link
Author

timgluz commented Dec 31, 2013

Source: github archive

SELECT repository_name, count(repository_name) as pushes, repository_description, repository_url
FROM [githubarchive:github.timeline]
WHERE type="PushEvent"
    AND repository_language="Ruby"
    AND PARSE_UTC_USEC(created_at) >= PARSE_UTC_USEC('2013-01-01 00:00:00')
GROUP BY repository_name, repository_description, repository_url
ORDER BY pushes DESC
LIMIT 100;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment