Quantcast
Channel: BigQueri.es - Latest topics
Viewing all articles
Browse latest Browse all 23

What are the top 100 most active Ruby repositories on GitHub?

$
0
0

Ilya Grigorik wrote:

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('2012-04-01 00:00:00')
GROUP BY repository_name, repository_description, repository_url
ORDER BY pushes DESC
LIMIT 100

That should do the trick! Try it.

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 23

Trending Articles