mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
3e0cdbeaf4
* require, require_relative, load by double quotes We're getting rid of all single quote usage, unless it serves a specific purpose, as per the general style guide.
17 lines
542 B
Ruby
17 lines
542 B
Ruby
require_relative "boot"
|
|
|
|
require "rails/all"
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
module Dummy
|
|
class Application < Rails::Application
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
config.load_defaults 6.0
|
|
|
|
# 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.
|
|
end
|
|
end
|