Sha256: d9774ad5de44c1d211955670925e96780c230b9044738aa61e0d40bd22b854c5
Contents?: true
Size: 853 Bytes
Versions: 4
Compression:
Stored size: 853 Bytes
Contents
require_relative 'boot' 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 Dummy class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. config.load_defaults 5.2 # Settings in config/environments/* take precedence over those specified here. # Application configuration can go into files in config/initializers # -- all .rb files in that directory are automatically loaded after loading # the framework and any gems in your application. config.active_record.sqlite3.represent_boolean_as_integer = true # rails 5 update. tests don't create the belongs_to models config.active_record.belongs_to_required_by_default = false end end
Version data entries
4 entries across 4 versions & 1 rubygems