Skip to content

Instantly share code, notes, and snippets.

@ericraio
Created September 3, 2012 02:36
Show Gist options
  • Save ericraio/3606344 to your computer and use it in GitHub Desktop.
Save ericraio/3606344 to your computer and use it in GitHub Desktop.
Neat Things With Bundler
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