1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/myapp/config/application.rb

35 lines
1,004 B
Ruby
Raw Normal View History

2018-06-21 14:14:54 -04:00
require_relative 'boot'
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
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)
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}"
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
end
end