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

fix typo [ci skip] (#5567)

This commit is contained in:
Abdelkader Boudih 2022-10-10 17:08:30 +01:00 committed by GitHub
parent 533766aa54
commit e3df9e383d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 23 deletions

View file

@ -1,17 +1,16 @@
require_relative "boot"
require "rails"
%w(
%w[
active_record/railtie
action_controller/railtie
action_view/railtie
action_mailer/railtie
active_job/railtie
).each do |railtie|
].each do |railtie|
require railtie
end
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)