2018-06-21 14:14:54 -04:00
|
|
|
require_relative 'boot'
|
2012-01-23 17:05:03 -05:00
|
|
|
|
|
|
|
require 'rails/all'
|
|
|
|
|
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
|
2018-06-21 14:14:54 -04:00
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
|
|
config.load_defaults 5.2
|
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
|