Sha256: a072b3e1c6b6fa02c2df1f413cb72480f2f06ab67b7f9a70e7b8861dfca916ff
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
require "rails/all" require "clearance" module Dummy APP_ROOT = File.expand_path("..", __FILE__).freeze I18n.enforce_available_locales = true class Application < Rails::Application config.action_controller.allow_forgery_protection = false config.action_controller.perform_caching = false config.action_dispatch.show_exceptions = false config.action_mailer.default_url_options = { host: "dummy.example.com" } config.action_mailer.delivery_method = :test config.active_support.deprecation = :stderr config.active_support.test_order = :random config.cache_classes = true config.consider_all_requests_local = true config.eager_load = false config.encoding = "utf-8" config.paths["app/controllers"] << "#{APP_ROOT}/app/controllers" config.paths["app/models"] << "#{APP_ROOT}/app/models" config.paths["app/views"] << "#{APP_ROOT}/app/views" config.paths["config/database"] = "#{APP_ROOT}/config/database.yml" config.paths["log"] = "tmp/log/development.log" config.paths.add "config/routes.rb", with: "#{APP_ROOT}/config/routes.rb" config.secret_key_base = "SECRET_KEY_BASE" if config.active_record.sqlite3.respond_to?(:represent_boolean_as_integer) config.active_record.sqlite3.represent_boolean_as_integer = true end config.active_job.queue_adapter = :inline def require_environment! initialize! end def initialize!(&block) FileUtils.mkdir_p(Rails.root.join("db").to_s) super unless @initialized end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
clearance-2.0.0.beta1 | spec/dummy/application.rb |