Sha256: 6fb94cd4a9dacccb7c4abdf9ae2cb35e5c28e43c545211bef5bdf72a0a6e1fac

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

# development_cached
Microsites2::Application.configure do
  config.cache_classes = false
  config.whiny_nils = true

  config.consider_all_requests_local       = true
  config.action_controller.perform_caching = true
  config.cache_store = :dalli_store, 'localhost:11211'
  config.action_controller.page_cache_directory = '/home/piousbox/projects/microsites2/tmp/cache/pages'
  config.assets.compile = true

  # Don't care if the mailer can't send
  config.action_mailer.raise_delivery_errors = false

  # 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

  # Raise exception on mass assignment protection for Active Record models
  # config.active_record.mass_assignment_sanitizer = :strict

  # Log the query plan for queries taking more than this (works
  # with SQLite, MySQL, and PostgreSQL)
  # config.active_record.auto_explain_threshold_in_seconds = 0.5

  config.assets.compress = false

  # Expands the lines which load the assets
  config.assets.debug = true
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ish_lib-0.0.8 config/environments/development_cached.rb
ish_lib-0.0.3 config/environments/development_cached.rb