trabajo-afectivo/config/environments/development.rb

59 lines
2 KiB
Ruby
Raw Normal View History

2015-09-25 14:37:55 +00:00
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
2012-04-10 13:31:21 +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 web server when you make code changes.
config.cache_classes = false
2013-09-20 12:54:33 +00:00
# Do not eager load code on boot.
config.eager_load = false
2015-09-25 14:37:55 +00:00
# Show full error reports and disable caching.
2012-04-10 13:31:21 +00:00
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
2015-09-25 14:37:55 +00:00
# Don't care if the mailer can't send.
2012-04-10 13:31:21 +00:00
config.action_mailer.raise_delivery_errors = false
2015-09-25 14:37:55 +00:00
# Print deprecation notices to the Rails logger.
2012-04-10 13:31:21 +00:00
config.active_support.deprecation = :log
2015-09-25 14:37:55 +00:00
# Raise an error on page load if there are pending migrations.
2013-09-20 12:54:33 +00:00
config.active_record.migration_error = :page_load
2012-04-10 13:31:21 +00:00
# Do not compress assets
config.assets.compress = false
2015-09-25 14:37:55 +00:00
# Debug mode disables concatenation and preprocessing of assets.
# This option may cause significant delays in view rendering with a large
# number of complex assets.
#config.assets.debug = true
config.assets.debug = false
2013-08-21 19:38:15 +00:00
# Automatically inject JavaScript needed for LiveReload
if ENV['RAKE_LIVE_RELOAD'].present?
require 'rack-livereload'
config.middleware.insert_after(
ActionDispatch::Static,
Rack::LiveReload,
no_swf: true,
min_delay: 500, # default 1000
max_delay: 10_000, # default 60_000
live_reload_port: 35_738
)
end
2015-09-25 14:37:55 +00:00
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
# yet still be able to expire them through the digest params.
2015-09-29 12:51:07 +00:00
config.assets.digest = false
2015-09-25 14:37:55 +00:00
# Adds additional error checking when serving assets at runtime.
# Checks for improperly declared sprockets dependencies.
# Raises helpful error messages.
config.assets.raise_runtime_errors = true
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
end