saasbook

heroku_gemfile.rb

Mar 13th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.36 KB | None | 0 0
  1. # for Heroku, replace "gem 'sqlite3'" in your Gemfile with this:
  2. group :development, :test do
  3.   # if you already have a 'group :development,:test' block in your
  4.   # Gemfile, you can just move the line "gem 'sqlite3'" into it.
  5.   gem 'sqlite3' # use SQLite only in development and testing
  6. end
  7. group :production do
  8.   gem 'pg' # use PostgreSQL in production (Heroku)
  9. end
Add Comment
Please, Sign In to add comment