Sha256: d7691ad6851b03e6f6b96b6417ad7df6318985d0cb9ca8848bff28c34e0bd03f

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

Dummy::Application.configure do
  config.action_controller.allow_forgery_protection = false
  config.action_controller.perform_caching          = false
  config.action_dispatch.show_exceptions            = false
  config.action_mailer.default_url_options          = { :host => 'example.com' }
  config.action_mailer.delivery_method              = :test
  config.active_record.mass_assignment_sanitizer    = :strict
  config.active_support.deprecation                 = :stderr
  config.cache_classes                              = true
  config.consider_all_requests_local                = true
  config.serve_static_files                        = true
  config.static_cache_control                       = "public, max-age=3600"
  config.whiny_nils                                 = true

  # Set the logging destination(s)
  config.log_to = %w[file]

  # Show the logging configuration on STDOUT
  config.show_log_configuration = false

  # base URL for 'orders' site
  config.applicants_orders_base_url = 'http://www.example.com'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
applicants-0.11.0 spec/dummy/config/environments/test.rb