Sha256: 8555ad992e06d633f31c0ff8791e8eefdcb86015b7c75233ccf65fc6e86562c9

Contents?: true

Size: 1.16 KB

Versions: 15

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

Rails.application.configure do
  config.cache_classes = true

  # Eager load code on boot. This eager loads most of Rails and
  # your application in memory, allowing both threaded web servers
  # and those relying on copy on write to perform better.
  # Rake tasks automatically ignore this option for performance.
  config.eager_load = true

  # Full error reports are disabled and caching is turned on.
  config.consider_all_requests_local       = false
  config.action_controller.perform_caching = true

  config.serve_static_assets = false

  # Compress JavaScripts and CSS.
  config.assets.js_compressor = :uglifier
  # config.assets.css_compressor = :sass

  # Do not fallback to assets pipeline if a precompiled asset is missed.
  config.assets.compile = false

  # Generate digests for assets URLs.
  config.assets.digest = true

  config.log_level = :info

  config.i18n.fallbacks = true

  # Send deprecation notices to registered listeners.
  config.active_support.deprecation = :notify

  config.log_formatter = ::Logger::Formatter.new

  # Do not dump schema after migrations.
  config.active_record.dump_schema_after_migration = false
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
aaf-gumboot-2.6.3 spec/dummy/config/environments/production.rb
aaf-gumboot-2.6.2 spec/dummy/config/environments/production.rb
aaf-gumboot-2.6.1 spec/dummy/config/environments/production.rb
aaf-gumboot-2.6.0 spec/dummy/config/environments/production.rb
aaf-gumboot-2.5.1 spec/dummy/config/environments/production.rb
aaf-gumboot-2.5.0 spec/dummy/config/environments/production.rb
aaf-gumboot-2.4.0 spec/dummy/config/environments/production.rb
aaf-gumboot-2.2.0 spec/dummy/config/environments/production.rb
aaf-gumboot-2.1.4 spec/dummy/config/environments/production.rb
aaf-gumboot-2.1.3 spec/dummy/config/environments/production.rb
aaf-gumboot-2.1.1 spec/dummy/config/environments/production.rb
aaf-gumboot-2.1.0 spec/dummy/config/environments/production.rb
aaf-gumboot-2.0.1 spec/dummy/config/environments/production.rb
aaf-gumboot-1.2.0 spec/dummy/config/environments/production.rb
aaf-gumboot-1.1.0 spec/dummy/config/environments/production.rb