2011-04-13 10:19:51 +00:00
|
|
|
PrototypeR4::Application.configure do
|
|
|
|
# Settings specified here will take precedence over those in config/application.rb
|
2009-05-07 16:53:18 +00:00
|
|
|
|
2010-03-08 08:04:05 +00:00
|
|
|
# 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
|
2009-05-07 16:53:18 +00:00
|
|
|
|
2010-03-08 08:04:05 +00:00
|
|
|
# Log error messages when you accidentally call methods on nil.
|
|
|
|
config.whiny_nils = true
|
2009-05-07 16:53:18 +00:00
|
|
|
|
2010-03-08 08:04:05 +00:00
|
|
|
# Show full error reports and disable caching
|
|
|
|
config.consider_all_requests_local = true
|
2011-07-12 08:00:57 +00:00
|
|
|
#config.action_view.debug_rjs = true
|
2010-03-08 08:04:05 +00:00
|
|
|
config.action_controller.perform_caching = false
|
2009-05-07 16:53:18 +00:00
|
|
|
|
2010-03-08 08:04:05 +00:00
|
|
|
# Don't care if the mailer can't send
|
|
|
|
config.action_mailer.raise_delivery_errors = false
|
2010-03-04 08:33:26 +00:00
|
|
|
|
2011-04-13 10:19:51 +00:00
|
|
|
# Print deprecation notices to the Rails logger
|
|
|
|
config.active_support.deprecation = :log
|
|
|
|
|
|
|
|
# Only use best-standards-support built into browsers
|
|
|
|
config.action_dispatch.best_standards_support = :builtin
|
2011-07-12 08:00:57 +00:00
|
|
|
|
2010-03-08 08:04:05 +00:00
|
|
|
end
|
2011-04-13 10:19:51 +00:00
|
|
|
|