socialforge/config/environments/development.rb

20 lines
851 B
Ruby
Raw Normal View History

2013-08-01 10:33:49 +08:00
# Settings specified here will take precedence over those in config/application.rb
RedmineApp::Application.configure do
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the webserver when you make code changes.
config.cache_classes = false
# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true
# Show full error reports and disable caching
2013-10-21 08:57:55 +08:00
config.consider_all_requests_local = true
2015-01-07 09:27:44 +08:00
config.action_controller.perform_caching = true
2015-01-07 09:53:52 +08:00
config.cache_store = :file_store, "#{Rails.root }/public/tmp/"
2013-08-01 10:33:49 +08:00
# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = false
config.active_support.deprecation = :log
end