Sha256: 0fcf0ff8f8a94c0c5bb790c1aab05342e2a1c5644f7276b415f78bfc6e98e8b9
Contents?: true
Size: 1.64 KB
Versions: 1
Compression:
Stored size: 1.64 KB
Contents
require 'securerandom' Rails.env = ENV['RAILS_ENV'] || 'test' module Combustion class Application < Rails::Application # Core Settings config.cache_classes = true config.whiny_nils = true if Rails.version.to_s < '4.0.0' config.consider_all_requests_local = true config.secret_token = Digest::SHA1.hexdigest Time.now.to_s config.eager_load = Rails.env.production? config.secret_key_base = SecureRandom.hex if Rails.version.to_s >= '4.0.0' # ActiveSupport Settings config.active_support.deprecation = :stderr # Some settings we're not sure if we want, so let's not load them by # default. Instead, wait for this method to be invoked (to get around # load-order complications). def self.configure_for_combustion config.root = File.expand_path File.join(Dir.pwd, Combustion.path) if defined? ActiveRecord::Railtie # Turn on ActiveRecord attribute whitelisting # This way the dummy app matches new rails apps re: this setting config.active_record.whitelist_attributes = true end if defined? ActionController::Railtie config.action_dispatch.show_exceptions = false config.action_controller.perform_caching = false config.action_controller.allow_forgery_protection = false end if defined? ActionMailer::Railtie config.action_mailer.delivery_method = :test config.action_mailer.default_url_options = {:host => 'www.example.com'} end if defined? Sprockets config.assets.enabled = true end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
combustion-0.5.0 | lib/combustion/application.rb |