2018-06-21 14:14:54 -04:00
|
|
|
require_relative 'boot'
|
2012-01-23 17:05:03 -05:00
|
|
|
|
2020-03-17 13:12:59 -04:00
|
|
|
require 'rails'
|
|
|
|
%w(
|
|
|
|
active_record/railtie
|
|
|
|
action_controller/railtie
|
|
|
|
action_view/railtie
|
|
|
|
action_mailer/railtie
|
|
|
|
active_job/railtie
|
|
|
|
sprockets/railtie
|
|
|
|
).each do |railtie|
|
|
|
|
begin
|
|
|
|
require railtie
|
|
|
|
rescue LoadError
|
|
|
|
end
|
|
|
|
end
|
2012-01-23 17:05:03 -05:00
|
|
|
|
2015-09-30 19:16:06 -04:00
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
Bundler.require(*Rails.groups)
|
2012-01-23 17:05:03 -05:00
|
|
|
|
|
|
|
module Myapp
|
|
|
|
class Application < Rails::Application
|
2019-08-02 14:31:50 -04:00
|
|
|
# Load the defaults for whichever Rails version we are using, we need to
|
|
|
|
# ensure we work with all defaults.
|
|
|
|
config.load_defaults "#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}"
|
2012-01-23 17:05:03 -05:00
|
|
|
|
2018-06-21 14:14:54 -04:00
|
|
|
# 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.
|
2016-02-08 16:43:29 -05:00
|
|
|
config.active_job.queue_adapter = :sidekiq
|
2012-01-23 17:05:03 -05:00
|
|
|
end
|
|
|
|
end
|