diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-06-27 16:13:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-27 16:13:59 +0900 |
commit | cb0fdaacb277bd0595bfd73178329922aa24477e (patch) | |
tree | 1baf74d6b6512133d8c8163661a8100b26913440 /activejob/lib | |
parent | a0a1abb3c7942084111d87ae95837a83bcc794f6 (diff) | |
parent | ff2fbe2708daba3d26a5d4ac212de2f13724fc2f (diff) | |
download | rails-cb0fdaacb277bd0595bfd73178329922aa24477e.tar.gz rails-cb0fdaacb277bd0595bfd73178329922aa24477e.tar.bz2 rails-cb0fdaacb277bd0595bfd73178329922aa24477e.zip |
Merge pull request #33234 from alpaca-tc/autoload_activejob_arguments
Autoload Activejob::Arguments
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job.rb | 1 | ||||
-rw-r--r-- | activejob/lib/active_job/enqueuing.rb | 2 | ||||
-rw-r--r-- | activejob/lib/active_job/execution.rb | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/activejob/lib/active_job.rb b/activejob/lib/active_job.rb index 01fab4d918..69c02098a0 100644 --- a/activejob/lib/active_job.rb +++ b/activejob/lib/active_job.rb @@ -31,6 +31,7 @@ require "global_id" module ActiveJob extend ActiveSupport::Autoload + autoload :Arguments autoload :Base autoload :QueueAdapters autoload :Serializers diff --git a/activejob/lib/active_job/enqueuing.rb b/activejob/lib/active_job/enqueuing.rb index 53cb98fc71..66a7919aad 100644 --- a/activejob/lib/active_job/enqueuing.rb +++ b/activejob/lib/active_job/enqueuing.rb @@ -1,7 +1,5 @@ # frozen_string_literal: true -require "active_job/arguments" - module ActiveJob # Provides behavior for enqueuing jobs. module Enqueuing diff --git a/activejob/lib/active_job/execution.rb b/activejob/lib/active_job/execution.rb index d75be376ec..8833e798d2 100644 --- a/activejob/lib/active_job/execution.rb +++ b/activejob/lib/active_job/execution.rb @@ -1,7 +1,6 @@ # frozen_string_literal: true require "active_support/rescuable" -require "active_job/arguments" module ActiveJob module Execution |