Sha256: 423610d35fec5fc3a51df9f36d0d019fe5017165f6f6d0c7cb7aa22b61968d4b

Contents?: true

Size: 1.25 KB

Versions: 9

Compression:

Stored size: 1.25 KB

Contents

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

# require "active_model/railtie"
require "action_controller/railtie"
require "action_view/railtie"

require "cells"

module Dummy
  class Application < Rails::Application
    config.encoding = "utf-8"
    config.i18n.enforce_available_locales = false

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

    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.cells.with_assets = ["song/cell"]
    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

9 entries across 9 versions & 1 rubygems

Version Path
cells-4.0.5 test/dummy/config/application.rb
cells-4.0.4 test/dummy/config/application.rb
cells-4.0.3 test/dummy/config/application.rb
cells-4.0.2 test/dummy/config/application.rb
cells-4.0.1 test/dummy/config/application.rb
cells-4.0.0 test/dummy/config/application.rb
cells-4.0.0.rc1 test/dummy/config/application.rb
cells-4.0.0.beta6 test/dummy/config/application.rb
cells-4.0.0.beta5 test/dummy/config/application.rb