Sha256: 51ba6958ae51b77da339ce93bccab8a73b7fd2f1c75981739855dd8668b6ff4d

Contents?: true

Size: 883 Bytes

Versions: 2

Compression:

Stored size: 883 Bytes

Contents

Rails.env = 'test'

class Combustion::Application < Rails::Application
  config.root   = File.expand_path File.join(Dir.pwd, 'spec', 'internal')

  # Core Settings
  config.cache_classes               = true
  config.whiny_nils                  = true
  config.consider_all_requests_local = true
  config.secret_token                = Digest::SHA1.hexdigest Time.now.to_s

  # ActiveSupport Settings
  config.active_support.deprecation = :stderr

  # Action Controller and Action Dispatch
  config.action_dispatch.show_exceptions            = false
  config.action_controller.perform_caching          = false
  config.action_controller.allow_forgery_protection = false

  # Action Mailer Settings
  # config.action_mailer.delivery_method      = :test
  # config.action_mailer.default_url_options  = {:host => 'www.example.com'}

  # Asset Settings
  config.assets.enabled = true
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
combustion-0.1.1 lib/combustion/application.rb
combustion-0.1.0 lib/combustion/application.rb