summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authormo <mo.khan@gmail.com>2017-11-26 13:47:04 -0700
committermo <mo.khan@gmail.com>2017-11-26 13:47:04 -0700
commite584aea643274b1966d40a988d31c7317b28e738 (patch)
treebe56f44ea22c39f9de2291497e6095e480278eb1 /Gemfile
parentf6ea85a7711cb3f598aeff4329aed89e12a2136f (diff)
add pg and rails_12factor for production.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index fc31bb1..89f733f 100644
--- a/Gemfile
+++ b/Gemfile
@@ -8,8 +8,6 @@ end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1.4'
-# Use sqlite3 as the database for Active Record
-gem 'sqlite3'
# Use Puma as the app server
gem 'puma', '~> 3.7'
# Use SCSS for stylesheets
@@ -43,6 +41,7 @@ group :development, :test do
gem 'ffaker'
gem 'webmock'
gem 'rails-controller-testing'
+ gem 'sqlite3'
end
group :development do
@@ -53,6 +52,10 @@ group :development do
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
+group :production do
+ gem 'pg'
+ gem 'rails_12factor'
+end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]