diff options
Diffstat (limited to 'railties/environments')
-rw-r--r-- | railties/environments/environment.rb | 12 | ||||
-rw-r--r-- | railties/environments/test.rb | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb index 2e485a5738..73ebf20d3f 100644 --- a/railties/environments/environment.rb +++ b/railties/environments/environment.rb @@ -1,6 +1,6 @@ # Be sure to restart your web server when you modify this file. -# Uncomment below to force Rails into production mode when +# Uncomment below to force Rails into production mode when # you don't control web/app server and can't set it the proper way # ENV['RAILS_ENV'] ||= 'production' @@ -12,7 +12,7 @@ require File.join(File.dirname(__FILE__), 'boot') Rails::Initializer.run do |config| # Settings in config/environments/* take precedence over those specified here - + # Skip frameworks you're not going to use (only works if using vendor/rails) # config.frameworks -= [ :active_resource, :action_mailer ] @@ -22,7 +22,7 @@ Rails::Initializer.run do |config| # Add additional load paths for your own custom dirs # config.load_paths += %W( #{RAILS_ROOT}/extras ) - # Force all environments to use the same logger level + # Force all environments to use the same logger level # (by default production uses :info, the others :debug) # config.log_level = :debug @@ -38,7 +38,7 @@ Rails::Initializer.run do |config| # config.action_controller.session_store = :active_record_store # Use SQL instead of Active Record's schema dumper when creating the test database. - # This is necessary if your schema can't be completely dumped by the schema dumper, + # This is necessary if your schema can't be completely dumped by the schema dumper, # like if you have constraints or database-specific column types # config.active_record.schema_format = :sql @@ -49,7 +49,7 @@ Rails::Initializer.run do |config| # config.active_record.default_timezone = :utc # See Rails::Configuration for more options - + # Application configuration should go into files in config/initializers # -- all .rb files in that directory is automatically loaded -end
\ No newline at end of file +end diff --git a/railties/environments/test.rb b/railties/environments/test.rb index f0689b924b..bbca20a31b 100644 --- a/railties/environments/test.rb +++ b/railties/environments/test.rb @@ -16,4 +16,4 @@ config.action_controller.perform_caching = false # Tell ActionMailer not to deliver emails to the real world. # The :test delivery method accumulates sent emails in the # ActionMailer::Base.deliveries array. -config.action_mailer.delivery_method = :test
\ No newline at end of file +config.action_mailer.delivery_method = :test |