Skip to content

Instantly share code, notes, and snippets.

@UnderpantsGnome
Created February 11, 2010 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UnderpantsGnome/301760 to your computer and use it in GitHub Desktop.
Save UnderpantsGnome/301760 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
File.open('gemlist').each do |line|
next if line =~ /^#/
g, v = line.split
ret = system("gem install #{g} #{v} --no-rdoc --no-ri") if g && v
p $? unless ret
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment