diff options
| author | mo <mo.khan@gmail.com> | 2017-11-26 13:47:04 -0700 |
|---|---|---|
| committer | mo <mo.khan@gmail.com> | 2017-11-26 13:47:04 -0700 |
| commit | e584aea643274b1966d40a988d31c7317b28e738 (patch) | |
| tree | be56f44ea22c39f9de2291497e6095e480278eb1 /Gemfile | |
| parent | f6ea85a7711cb3f598aeff4329aed89e12a2136f (diff) | |
add pg and rails_12factor for production.
Diffstat (limited to 'Gemfile')
| -rw-r--r-- | Gemfile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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] |
