Sha256: 5ebae02ecf7b5ad03b89e09b6442645dcf7d5cea4d0b476c19991e90d22d7cd9
Contents?: true
Size: 818 Bytes
Versions: 13
Compression:
Stored size: 818 Bytes
Contents
require File.expand_path('../boot', __FILE__) require "action_controller/railtie" Bundler.require module Dummy class Application < Rails::Application # Disable class caching for session auto-load test config.cache_classes = false config.eager_load = false # 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 # Print deprecation notices to the stderr config.active_support.deprecation = :stderr config.secret_key_base = 'secret' end end
Version data entries
13 entries across 13 versions & 2 rubygems