diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2014-05-18 20:59:12 +0000 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2014-05-18 20:59:12 +0000 |
commit | 91461dc7a9f0aa879cfff503ea2fdb9a71e0277e (patch) | |
tree | 75ba9ac32f1bc59b490f096d61dc8012f3daae8a /lib/active_job/job_wrappers | |
parent | 68543de83612049e3254f7243b575039f102cd49 (diff) | |
download | rails-91461dc7a9f0aa879cfff503ea2fdb9a71e0277e.tar.gz rails-91461dc7a9f0aa879cfff503ea2fdb9a71e0277e.tar.bz2 rails-91461dc7a9f0aa879cfff503ea2fdb9a71e0277e.zip |
Lazy-load adapters, fixes #6
Diffstat (limited to 'lib/active_job/job_wrappers')
-rw-r--r-- | lib/active_job/job_wrappers/resque_wrapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/active_job/job_wrappers/resque_wrapper.rb b/lib/active_job/job_wrappers/resque_wrapper.rb index 0db9cf144f..cbeee4fb1b 100644 --- a/lib/active_job/job_wrappers/resque_wrapper.rb +++ b/lib/active_job/job_wrappers/resque_wrapper.rb @@ -2,7 +2,7 @@ require 'resque' require 'active_support/core_ext/enumerable' require 'active_support/core_ext/array/access' -require 'active_support/core_ext/string/inflections' + module ActiveJob |