Sha256: faf512b1f4d7a5e73db9810a0891fea29d86d93c4af83ba5e0d158a7c2778e4d
Contents?: true
Size: 749 Bytes
Versions: 10
Compression:
Stored size: 749 Bytes
Contents
require File.expand_path('../boot', __FILE__) require 'rails/all' # Require the gems listed in Gemfile, including any gems # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) module SpecApp class Application < Rails::Application config.encoding = "utf-8" config.cache_classes = true config.whiny_nils = true config.consider_all_requests_local = true config.action_controller.perform_caching = false config.action_controller.allow_forgery_protection = false config.action_dispatch.show_exceptions = false config.action_mailer.delivery_method = :test config.active_support.deprecation = :stderr config.root = File.expand_path('../..', __FILE__) end end
Version data entries
10 entries across 10 versions & 3 rubygems