Sha256: b0efe82bef22fe78f65b1a2a8d92e80b058f88259b48191ea52ec3daa8645eb4
Contents?: true
Size: 1.39 KB
Versions: 6
Compression:
Stored size: 1.39 KB
Contents
require File.expand_path("../boot", __FILE__) # Pick the frameworks you want: require "active_record/railtie" require "action_controller/railtie" Bundler.require(:default, Rails.env) require "paper_trail" module Dummy class Application < Rails::Application config.encoding = "utf-8" config.filter_parameters += [:password] config.active_support.escape_html_entities_in_json = true config.active_support.test_order = :sorted # Disable assets in rails 4.2. In rails 5, config does not respond to # assets, probably because it was moved out of railties to some other gem, # and we only have dev. dependencies on railties, not all of rails. When # we drop support for rails 4.2, we can remove this whole conditional. if config.respond_to?(:assets) config.assets.enabled = false end config.secret_key_base = "A fox regularly kicked the screaming pile of biscuits." # `raise_in_transactional_callbacks` was added in rails 4, then deprecated # in rails 5. Oh, how fickle are the gods. if ActiveRecord.respond_to?(:gem_version) v = ActiveRecord.gem_version if v >= Gem::Version.new("4.2") && v < Gem::Version.new("5.0.0.beta1") config.active_record.raise_in_transactional_callbacks = true end if v >= Gem::Version.new("5.0.0.beta1") config.active_record.time_zone_aware_types = [:datetime] end end end end
Version data entries
6 entries across 6 versions & 2 rubygems