1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #33234 from alpaca-tc/autoload_activejob_arguments

Autoload Activejob::Arguments
This commit is contained in:
Ryuta Kamizono 2018-06-27 16:13:59 +09:00 committed by GitHub
commit cb0fdaacb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 3 deletions

View file

@ -31,6 +31,7 @@ require "global_id"
module ActiveJob
extend ActiveSupport::Autoload
autoload :Arguments
autoload :Base
autoload :QueueAdapters
autoload :Serializers

View file

@ -1,7 +1,5 @@
# frozen_string_literal: true
require "active_job/arguments"
module ActiveJob
# Provides behavior for enqueuing jobs.
module Enqueuing

View file

@ -1,7 +1,6 @@
# frozen_string_literal: true
require "active_support/rescuable"
require "active_job/arguments"
module ActiveJob
module Execution