saasbook

heroku_gemfile.rb

Sep 15th, 2014
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.48 KB | None | 0 0
  1. # making your Gemfile safe for Heroku
  2. ruby '1.9.3'   # just in case - tell Heroku which Ruby version we need
  3. group :development, :test do
  4.   # make sure sqlite3 gem ONLY occurs inside development & test groups
  5.   gem 'sqlite3' # use SQLite only in development and testing
  6. end
  7. group :production do
  8.   # make sure the following gems are in your production group:
  9.   gem 'pg'              # use PostgreSQL in production (Heroku)
  10.   gem 'rails_12factor'  # Heroku-specific production settings
  11. end
Add Comment
Please, Sign In to add comment