Created
September 3, 2012 02:36
-
-
Save ericraio/3606344 to your computer and use it in GitHub Desktop.
Neat Things With Bundler
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
source “http://rubygems.org” | |
gem “rails” | |
gem “rack-cache”, :require => “rack/cache” gem “nokogiri”, “~> 1.4.2″ | |
group :development do3 | |
gem “sqlite3″ | |
end | |
group :staging do3 | |
gem “mysql2″ | |
end | |
group :edge do | |
gem “mysql2″ | |
end | |
group :production do3 | |
gem “pg” | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment