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

21 lines
703 B
Ruby
Raw Normal View History

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