Sha256: a88609460ffb03b014d8a3a45c7e0a53b7d65d2dd1956dde89fe159ccab4f788

Contents?: true

Size: 1.04 KB

Versions: 14

Compression:

Stored size: 1.04 KB

Contents

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

require 'rails'
require 'action_controller/railtie'
require 'action_view/railtie'
require 'cell/railtie'

module Dummy
  class Application < Rails::Application
    config.i18n.enforce_available_locales = false

    config.cache_store = :memory_store
    config.secret_token = SecureRandom.uuid
    config.secret_key_base = SecureRandom.uuid

    # enable asset pipeline as in development.
    config.assets.enabled = true
    config.assets.compile = true
    config.cache_classes = true

    # Show full error reports and disable caching
    config.consider_all_requests_local       = true
    config.action_controller.perform_caching = false

    # Raise exceptions instead of rendering exception templates
    config.action_dispatch.show_exceptions = false

    # Disable request forgery protection in test environment
    config.action_controller.allow_forgery_protection    = false
    config.active_support.deprecation = :stderr

    config.eager_load = false
    config.active_support.test_order = :random
  end
end

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
cells-hamlit2-0.1.1 test/dummy/config/application.rb
cells-haml-0.0.10 test/dummy/config/application.rb
cells-hamlit-0.2.0 test/dummy/config/application.rb
cells-haml-0.0.9 test/dummy/config/application.rb
cells-hamlit-0.1.1 test/dummy/config/application.rb
cells-hamlit-0.1.0 test/dummy/config/application.rb
cells-haml-0.0.8 test/dummy/config/application.rb
cells-haml-0.0.7 test/dummy/config/application.rb
cells-haml-0.0.6 test/dummy/config/application.rb
cells-haml-0.0.5 test/dummy/config/application.rb
cells-haml-0.0.4 test/dummy/config/application.rb
cells-haml-0.0.3 test/dummy/config/application.rb
cells-haml-0.0.2 test/dummy/config/application.rb
cells-haml-0.0.1 test/dummy/config/application.rb