Advertisement
saasbook

heroku_gemfile.rb

Jan 10th, 2012
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.23 KB | None | 0 0
  1. # for Heroku, replace "gem 'sqlite3'" in your Gemfile with this:
  2. group :development, :test do
  3.   gem 'sqlite3' # use SQLite only in development and testing
  4. end
  5. group :production do
  6.   gem 'pg' # use PostgreSQL in production (Heroku)
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement