Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created November 19, 2008 00:56
Show Gist options
  • Save tenderlove/26356 to your computer and use it in GitHub Desktop.
Save tenderlove/26356 to your computer and use it in GitHub Desktop.
require 'nokogiri'
require 'open-uri'
###
# Get the number of gem downloads
# Usage: script.rb <gem_name>
#
# ruby script.rb nokogiri # => 1189
#
doc = Nokogiri::HTML(open('http://gems.rubyforge.org/stats.html'))
puts Hash[*doc.xpath('//td[a[@name]]').map { |node|
[node.text, node.next_sibling.text.to_i]
}.flatten][ARGV[0]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment