Skip to content

Instantly share code, notes, and snippets.

@robcthegeek
Created July 17, 2011 17:23
Show Gist options
  • Save robcthegeek/1087827 to your computer and use it in GitHub Desktop.
Save robcthegeek/1087827 to your computer and use it in GitHub Desktop.
Must-Have Gems
# Some gems I can't seem to live without :)
# Run this bad boy with: "ruby < <(curl https://raw.github.com/gist/1087827/gembag.rb)"
gems = %w{
rails
bundler
haml
json
heroku
faker
autotest
awesome_print
hirb
}
print "Installing Gems:\n"
gems.each { |g| print " - #{g}\n" }
system "gem install #{gems.join(' ')}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment