diff options
author | James McKinney <james@slashpoundbang.com> | 2012-04-02 18:00:22 +0100 |
---|---|---|
committer | James McKinney <james@slashpoundbang.com> | 2012-04-02 18:00:22 +0100 |
commit | 74d74416d145a49c04f62ec9659f1a564251c1b6 (patch) | |
tree | e7d60c26852096b5edec1195ff23640b54bb7fcd /config/environment.rb | |
parent | 91925edb6a52b8f7e5320ed1c081aff90046dc5c (diff) |
use Rails.root, not RAILS_ROOT
Diffstat (limited to 'config/environment.rb')
-rw-r--r-- | config/environment.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/environment.rb b/config/environment.rb index 7b6e8f5bc..e35194bc7 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -49,7 +49,7 @@ Rails::Initializer.run do |config| # config.plugins = %W( exception_notification ssl_requirement ) # Add additional load paths for your own custom dirs - # config.load_paths += %W( #{RAILS_ROOT}/extras ) + # config.load_paths += %W( #{Rails.root}/extras ) # Force all environments to use the same logger level # (by default production uses :info, the others :debug) |