diff options
| author | mo khan <mo@mokhan.ca> | 2014-11-15 07:09:33 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2014-11-15 07:09:33 -0700 |
| commit | a8588a7b2b4ca90d067e3d8551255cb49f0adc0b (patch) | |
| tree | e7a56f4bc1a8f7a3b195bc25560246d914c30146 | |
| parent | 463ea5b997fe717d274277b19613e0418e157bb4 (diff) | |
add 12 factor auth gem.
| -rw-r--r-- | Gemfile | 3 | ||||
| -rw-r--r-- | Gemfile.lock | 6 |
2 files changed, 9 insertions, 0 deletions
@@ -58,3 +58,6 @@ group :development, :test do gem 'puma' gem 'foreman' end +group :staging, :production do + gem 'rails_12factor' +end diff --git a/Gemfile.lock b/Gemfile.lock index b500549..42d570c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -137,6 +137,11 @@ GEM bundler (>= 1.3.0, < 2.0) railties (= 4.1.7) sprockets-rails (~> 2.0) + rails_12factor (0.0.3) + rails_serve_static_assets + rails_stdout_logging + rails_serve_static_assets (0.0.2) + rails_stdout_logging (0.0.3) railties (4.1.7) actionpack (= 4.1.7) activesupport (= 4.1.7) @@ -221,6 +226,7 @@ DEPENDENCIES puma rack-ssl-enforcer rails + rails_12factor rspec-rails sass-rails sdoc |
