1. 18 9月, 2017 1 次提交
  2. 14 9月, 2017 1 次提交
  3. 24 8月, 2017 1 次提交
  4. 10 8月, 2017 1 次提交
  5. 03 8月, 2017 1 次提交
  6. 10 5月, 2017 3 次提交
  7. 19 3月, 2017 1 次提交
  8. 19 8月, 2016 1 次提交
  9. 13 6月, 2016 1 次提交
  10. 20 4月, 2016 1 次提交
  11. 05 2月, 2016 1 次提交
  12. 05 1月, 2016 1 次提交
  13. 09 11月, 2015 1 次提交
  14. 17 10月, 2015 1 次提交
  15. 07 10月, 2015 1 次提交
  16. 13 8月, 2015 1 次提交
    • D
      [ci skip] How to pass arguments to ActiveJob Jobs · 8b2f4189
      Dhia Eddine Chouchane 提交于
      A section explaining how to pass arguments to Jobs has been added.
      
      [ci skip] How to pass arguments to ActiveJob Jobs
      
      Removed the "how to pass arguments" from what you will know section
      
      [ci skip] improving Enqueue Job section
      
      Using GuestsCleanupJob rather than MyJob for coherence.
      
      [ci skip] Passing args section merged with enqueuing jobs
      
      Passing args is now explained through examples withing Enqueuing the Jobs section
      
      [ci skip] Unnecessary example removed
      
      [ci skip] Typo fixed (missing as)
      8b2f4189
  17. 04 8月, 2015 1 次提交
    • J
      Fixes #20799 · 3860e6b2
      Johannes Opper 提交于
      When `#perform_later` is called the locale isn't stored on the
      queue, which results in a locale reset when the job is performed.
      
      An example of the problem:
      
          I18n.locale = 'de'
          HelloJob.perform_now # german message, correct
      
      but
      
          I18n.locale = 'de'
          HelloJob.perform_later # english message, incorrect
      
      This PR attaches the current I18n.locale to every job during the
      serialization process. It is then restored during deserialization
      and used to perform the job with the correct locale.
      
      It falls back to the default locale if no serialized locale is
      found in order to provide backward compatibility with previously
      stored jobs. It is not necessary to clear the queue for the update.
      3860e6b2
  18. 09 7月, 2015 1 次提交
  19. 14 6月, 2015 2 次提交
  20. 19 4月, 2015 1 次提交
  21. 16 4月, 2015 1 次提交
  22. 21 2月, 2015 1 次提交
  23. 14 1月, 2015 2 次提交
  24. 08 1月, 2015 1 次提交
  25. 02 1月, 2015 1 次提交
  26. 31 12月, 2014 1 次提交
  27. 24 12月, 2014 1 次提交
  28. 13 12月, 2014 1 次提交
  29. 20 11月, 2014 1 次提交
  30. 16 11月, 2014 1 次提交
  31. 02 11月, 2014 1 次提交
  32. 01 11月, 2014 1 次提交
  33. 30 10月, 2014 1 次提交
  34. 27 10月, 2014 1 次提交
    • T
      Added queue_name_delimiter attribute. · 11ab04b1
      Terry Meacham 提交于
      - Added ActiveJob::Base#queue_name_delimiter to allow for
        developers using ActiveJob to change the delimiter from the default
        ('_') to whatever else they may be using (e.g., '.', '-', ...).
      
      - Updated source guide to include a blurb about the delimiter.
      11ab04b1
  35. 27 9月, 2014 1 次提交
  36. 22 9月, 2014 1 次提交