Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created November 4, 2008 23:33
Show Gist options
  • Save tenderlove/22259 to your computer and use it in GitHub Desktop.
Save tenderlove/22259 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'yaml'
SEATTLERB = [
'aaron patterson',
'alex volmer',
'andy smith',
'damon danieli',
'dave myron',
'eric hodel',
'evan phoenix',
'geoff grosenbach',
'jack danger canty',
'john barnette',
'mike mondragon',
'phil hagelderg',
'ryan davis',
]
file = ARGV[0] || 'yaml'
system("wget http://gems.rubyforge.org/yaml ||" +
" curl -O http://gems.rubyforge.org/yaml") if !File.exists?(file)
specs = []
YAML.load_file(file).gems.each do |name, spec|
next unless spec.authors.any? { |author|
SEATTLERB.any? { |seattlerb|
author =~ /#{seattlerb}/i
}
}
specs << spec
end
puts "total gem count: #{specs.map { |x| x.name }.uniq.length}"
dates = Hash.new { |dates,year|
dates[year] = Hash.new { |yr,month| yr[month] = [] }
}
specs.each do |spec|
dates[spec.date.year][spec.date.month] << spec
end
dates.sort_by { |k,v| k }.each do |year,hash|
hash.sort_by { |k,v| k }.each do |month,specs|
puts "#{year}-#{month}: #{specs.length}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment