index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activejob
/
lib
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
Allow `assert_performed_with` to be called without a block.
bogdanvlviv
2018-08-20
1
-7
/
+34
*
|
Fix `assert_performed_jobs` and `assert_no_performed_jobs`
bogdanvlviv
2018-08-20
1
-14
/
+28
*
|
Allow `:queue` option to `assert_no_performed_jobs`.
bogdanvlviv
2018-08-20
1
-2
/
+11
*
|
Allow `:queue` option to `assert_performed_jobs`.
bogdanvlviv
2018-08-20
1
-2
/
+12
*
|
Fix `perform_enqueued_jobs`
bogdanvlviv
2018-08-20
1
-1
/
+4
*
|
Allow `:queue` option to `perform_enqueued_jobs`.
bogdanvlviv
2018-08-20
2
-7
/
+29
*
|
Increment execution count before deserialize arguments
yuuji.yaginuma
2018-08-18
1
-3
/
+3
*
|
Add example `perform_enqueued_jobs` without block to api docs [ci skip]
bogdanvlviv
2018-08-16
1
-0
/
+8
*
|
Allow `perform_enqueued_jobs` to be called without a block.
Kevin Deisz
2018-08-15
1
-6
/
+21
*
|
perform_or_enqueue instead of enqueue_or_perform
Mohit Natoo
2018-08-09
1
-3
/
+3
|
/
*
Rails guides are now served over https
Paul McMahon
2018-07-24
1
-1
/
+1
*
[ci skip] Fixup changelog. Trim title. Mention benefit.
Kasper Timm Hansen
2018-07-20
1
-4
/
+4
*
Wrap ActiveJob::Enqueue in evented ActiveSupport::Notification
zvkemp
2018-07-17
1
-3
/
+3
*
ActiveJob::Base no longer dependents on Serializers
alpaca-tc
2018-07-03
2
-2
/
+0
*
Revert "Merge pull request #33234 from alpaca-tc/autoload_activejob_arguments"
Kasper Timm Hansen
2018-07-01
3
-1
/
+3
*
Allow `queue` option to `assert_no_enqueued_jobs`
bogdanvlviv
2018-06-30
1
-2
/
+10
*
Clarify activejob/lib/active_job/test_helper.rb
bogdanvlviv
2018-06-29
1
-2
/
+2
*
Allow call `assert_enqueued_with` and `assert_enqueued_email_with` with no block
bogdanvlviv
2018-06-29
1
-5
/
+25
*
Revert "Merge pull request #33243 from evopark/fix/action-mailer-test-helper-...
Rafael Mendonça França
2018-06-28
1
-1
/
+1
*
Fix ActionMailer assert_enqueued_email_with
Marcus Ilgner
2018-06-28
1
-1
/
+1
*
Autoload ActiveJob::Arguments
alpaca-tc
2018-06-27
1
-0
/
+1
*
ActiveJob::Arguments is no longer used in file
alpaca-tc
2018-06-27
2
-3
/
+0
*
Allow passing multiple exceptions to retry_on/discard_on
George Claghorn
2018-06-25
1
-7
/
+7
*
Fix name of the second parameter of block executed by `discard_on` and `retry...
bogdanvlviv
2018-05-29
1
-4
/
+4
*
update README link: md instead rdoc [ci skip]
Oscar Amado
2018-05-24
1
-1
/
+1
*
correct link to activejob readme [ci skip]
Oscar Amado
2018-05-24
1
-1
/
+1
*
Pass the error instance as the second parameter of block executed by `discard...
yuuji.yaginuma
2018-05-12
1
-1
/
+1
*
Make sure that when serialing an just deserialized job arguments are there
Rafael Mendonça França
2018-05-01
1
-4
/
+16
*
Strip duplicated suffixes more strictly
Ryuta Kamizono
2018-04-22
1
-1
/
+1
*
Fix duplicated suffix for JobGenerator
Yoshiyuki Hirano
2018-04-22
1
-0
/
+4
*
fix spelling in docs for ActiveJob::Serializers::ObjectSerializer#deserialize
Jared Rader
2018-04-13
1
-1
/
+1
*
Remove support for Qu gem.
Alberto Almagro
2018-03-19
2
-49
/
+0
*
Add documentation about not accepting PRs for new adapters (#32298)
Jeremy Green
2018-03-19
1
-0
/
+1
*
Remove passing extra arguments to ActiveJob Callbacks
bogdanvlviv
2018-02-23
3
-4
/
+4
*
Add support for timezones to Active Job
Andrew White
2018-02-22
3
-1
/
+21
*
Merge pull request #32026 from bogdanvlviv/improve-30941
Rafael França
2018-02-20
3
-24
/
+47
|
\
|
*
Fix error message about unknown `ActiveJob` argument serializer
bogdanvlviv
2018-02-17
1
-1
/
+1
|
*
Fix docs of ActiveJob custom argument serializers
bogdanvlviv
2018-02-17
2
-22
/
+22
|
*
Add argument serializer `TimeWithZoneSerializer`
bogdanvlviv
2018-02-17
2
-1
/
+24
*
|
Rails 6 requires Ruby 2.4.1+
Jeremy Daer
2018-02-17
2
-4
/
+2
|
/
*
Fix custome serializer setting
Yuji Yaginuma
2018-02-16
2
-4
/
+9
*
Simplify the implementation of custom argument serializers
Rafael Mendonça França
2018-02-14
10
-272
/
+172
*
Improve documentation on custom serializers
Rafael Mendonça França
2018-02-14
2
-0
/
+25
*
Add configuration to set custom serializers
Rafael Mendonça França
2018-02-14
1
-0
/
+6
*
No need to require a autoloaded constant
Rafael Mendonça França
2018-02-14
1
-1
/
+0
*
Add serializers for Time, Date and DateTime
Rafael Mendonça França
2018-02-14
6
-1
/
+74
*
Allow serializers to be used either as classes or objects
Rafael Mendonça França
2018-02-14
9
-115
/
+103
*
Add symbol and duration serializers
Rafael Mendonça França
2018-02-14
3
-1
/
+50
*
Only add one more custom key in the serialized hash
Rafael Mendonça França
2018-02-14
5
-43
/
+36
*
Define the interface of a Serializer
Rafael Mendonça França
2018-02-14
1
-0
/
+18
[prev]
[next]