Created
July 17, 2011 17:23
-
-
Save robcthegeek/1087827 to your computer and use it in GitHub Desktop.
Must-Have Gems
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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