diff options
Diffstat (limited to 'railties/environments')
-rw-r--r-- | railties/environments/environment.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb index c34a07e024..8a956d7cfa 100644 --- a/railties/environments/environment.rb +++ b/railties/environments/environment.rb @@ -16,8 +16,9 @@ Rails::Initializer.run do |config| # Skip frameworks you're not going to use (only works if using vendor/rails) # config.frameworks -= [ :active_resource, :action_mailer ] - # Only load the plugins named here, by default all plugins in vendor/plugins are loaded - # config.plugins = %W( exception_notification ssl_requirement ) + # Only load the plugins named here, in the order given. By default all plugins in vendor/plugins are loaded, in alphabetical order + # :all can be used as a placeholder for all plugins not explicitly named. + # config.plugins = [ :exception_notification, :ssl_requirement, :all ] # Add additional load paths for your own custom dirs # config.load_paths += %W( #{RAILS_ROOT}/extras ) |