Commit e05221054df218c8aed2d581e9c83247de118f68

Authored by Stephen Crosby
2 parents 7f343a5c b966b882
Exists in master and in 1 other branch production

Merge pull request #765 from jarinudom/silence_heroku_warnings

Add rails_12factor gem to prevent Heroku plugin injection
Showing 2 changed files with 9 additions and 0 deletions   Show diff stats
Gemfile
... ... @@ -101,6 +101,9 @@ group :heroku, :production do
101 101 gem 'unicorn', :require => false
102 102 end
103 103  
  104 +group :heroku do
  105 + gem 'rails_12factor'
  106 +end
104 107  
105 108 # Gems used only for assets and not required
106 109 # in production environments by default.
... ...
Gemfile.lock
... ... @@ -291,9 +291,14 @@ GEM
291 291 activeresource (= 3.2.21)
292 292 activesupport (= 3.2.21)
293 293 bundler (~> 1.0)
  294 + rails_12factor (0.0.3)
  295 + rails_serve_static_assets
  296 + rails_stdout_logging
294 297 rails_autolink (1.1.4)
295 298 rails (> 3.1)
296 299 railties (= 3.2.21)
  300 + rails_serve_static_assets (0.0.2)
  301 + rails_stdout_logging (0.0.3)
297 302 railties (3.2.21)
298 303 actionpack (= 3.2.21)
299 304 activesupport (= 3.2.21)
... ... @@ -442,6 +447,7 @@ DEPENDENCIES
442 447 quiet_assets
443 448 rack-ssl
444 449 rack-ssl-enforcer
  450 + rails_12factor
445 451 rails_autolink
446 452 railties (~> 3.2.21)
447 453 ri_cal
... ...