Sha256: ec81410b3506f0df30b86dd323edda4b9cb42030f64d4491d340116431234b27

Contents?: true

Size: 1.08 KB

Versions: 7

Compression:

Stored size: 1.08 KB

Contents

require File.expand_path('../boot', __FILE__)

require "action_controller/railtie"
require "sprockets/railtie"

Bundler.require

module Dummy
  class Application < Rails::Application
    # Configure the default encoding used in templates for Ruby 1.9.
    config.encoding = "utf-8"

    # Configure sensitive parameters which will be filtered from the log file.
    config.filter_parameters += [:password]

    # Enable escaping HTML in JSON.
    config.active_support.escape_html_entities_in_json = true

    # Moved from initializers.
    config.session_store :cookie_store, key: '_dummy_session'
    config.secret_token = 'bc510a13d2fb96575782e90e9f2f64afc0ba4e63e5869b6139613686f104d4d3dd92ee696468de5bcbbb74daedb702d3da97554efbc6792abe75091b9df0a2ab'
    config.secret_key_base = 'bc510a13d2fb96575782e90e9f2f64afc0ba4e63e5869b6139613686f104d4d3dd92ee696468de5bcbbb74daedb702d3da97554efbc6792abe75091b9df0a2ab'

    # Enable the asset pipeline
    config.assets.enabled = true

    # Version of your assets, change this if you want to expire all your assets
    config.assets.version = '1.0'
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
guard-teaspoon-0.8.0 spec/dummy/config/application.rb
teaspoon-0.7.9 spec/dummy/config/application.rb
teaspoon-0.7.8 spec/dummy/config/application.rb
teaspoon-0.7.7 spec/dummy/config/application.rb
guard-teaspoon-0.0.4 spec/dummy/config/application.rb
teaspoon-0.7.6 spec/dummy/config/application.rb
teaspoon-0.7.5 spec/dummy/config/application.rb