| Commit message (Expand) | Author | Age | Files | Lines |
* | Add more rubocop rules about whitespaces | Rafael Mendonça França | 2016-10-29 | 2 | -2/+2 |
* | Uses queue adapter_method instead of ActiveJob::Base.queue_adapter | Gabi Stefanini | 2016-10-24 | 1 | -2/+2 |
* | Removed deprecated support to passing the adapter class to .queue_adapter | Rafael Mendonça França | 2016-10-10 | 1 | -13/+0 |
* | use `descendants` to get class that inherited `ActiveJob::Base` | yuuji.yaginuma | 2016-09-05 | 1 | -0/+7 |
* | fixes remaining RuboCop issues [Vipul A M, Xavier Noria] | Xavier Noria | 2016-09-01 | 1 | -1/+1 |
* | Yield the job instance so you have access to things like `job.arguments` on t... | David Heinemeier Hansson | 2016-08-16 | 1 | -2/+2 |
* | code gardening: removes redundant selfs | Xavier Noria | 2016-08-08 | 1 | -1/+1 |
* | Add `Style/EmptyLines` in `.rubocop.yml` and remove extra empty lines | Ryuta Kamizono | 2016-08-07 | 1 | -2/+0 |
* | normalizes indentation and whitespace across the project | Xavier Noria | 2016-08-06 | 1 | -15/+15 |
* | modernizes hash syntax in activejob | Xavier Noria | 2016-08-06 | 1 | -1/+1 |
* | applies new string literal convention in activejob/test | Xavier Noria | 2016-08-06 | 14 | -182/+182 |
* | Fix tests against ActiveSupport::Durations | David Heinemeier Hansson | 2016-08-02 | 1 | -28/+45 |
* | Please Rubocup | David Heinemeier Hansson | 2016-08-02 | 1 | -2/+2 |
* | Not needed | David Heinemeier Hansson | 2016-08-01 | 1 | -1/+0 |
* | Allow for custom handling of exceptions that persist beyond the retry attempts | David Heinemeier Hansson | 2016-08-01 | 1 | -0/+5 |
* | Add exponentially_longer and custom wait algorithms | David Heinemeier Hansson | 2016-08-01 | 1 | -0/+39 |
* | Use descriptive exception names | David Heinemeier Hansson | 2016-08-01 | 1 | -14/+14 |
* | Reraise instead of swallow exceptions that occur beyond the retry attempts | David Heinemeier Hansson | 2016-07-29 | 1 | -1/+1 |
* | Satisfy pedantic rubocop whitespace detection | David Heinemeier Hansson | 2016-07-29 | 1 | -4/+4 |
* | Add retry_on/discard_on for better exception handling | David Heinemeier Hansson | 2016-07-29 | 1 | -0/+47 |
* | Fix AJ tests on ruby 2.4 being causes since classes are unified for Integer, ... | Vipul A M | 2016-07-09 | 1 | -1/+1 |
* | Fix jobs overriding AJ::Base#logger | Jean Boussier | 2016-06-17 | 1 | -1/+6 |
* | Provide the ability to override the queue adapter used by jobs under | Steve Lounsbury | 2016-06-11 | 1 | -0/+12 |
* | Added more tests for reserved hash keys of ActiveJob::Arguments. | Santosh Wadghule | 2016-03-17 | 1 | -6/+7 |
* | Add JSON round trip verification testcase | Mike Perham | 2016-03-09 | 1 | -1/+16 |
* | Job payload should be symmetric across JSON dump/load | Mike Perham | 2016-03-09 | 1 | -3/+3 |
* | Active Job: smaller footprint for the dev/test async adapter | Jeremy Daer | 2016-02-29 | 1 | -42/+0 |
* | Added support for bigdecimals in perform later | Siva Gollapalli | 2015-12-03 | 1 | -1/+1 |
* | Added missing specs for not modifying queues when using AJ test helpers | Wojciech Wnętrzak | 2015-10-07 | 1 | -0/+21 |
* | Merge pull request #21854 from morgoth/fix-serializing-at-option-in-aj-matchers | Yves Senn | 2015-10-05 | 1 | -4/+22 |
|\ |
|
| * | Fixed serializing `:at` option for `assert_enqueued_with` and `assert_perform... | Wojciech Wnętrzak | 2015-10-03 | 1 | -4/+16 |
|/ |
|
* | Support passing array to `assert_enqueued_jobs` in `:only` option | Wojciech Wnętrzak | 2015-10-03 | 1 | -0/+18 |
* | Merge pull request #19425 from wvengen/feature/activejob-priority-master | Rafael Mendonça França | 2015-09-25 | 1 | -0/+47 |
|\ |
|
| * | Add job priorities to ActiveJob | wvengen | 2015-09-17 | 1 | -0/+47 |
* | | :hocho: Typos | Akira Matsuda | 2015-09-21 | 1 | -1/+1 |
|/ |
|
* | Properly log nested parameters to Active Job | Marek Pieczyk | 2015-09-08 | 1 | -0/+8 |
* | Initial implementation of ActiveJob AsyncAdapter. | Jerry D'Antonio | 2015-08-25 | 1 | -0/+42 |
* | Make assert_enqueued_with and assert_performed_with returns the matched job | Jean Boussier | 2015-08-10 | 1 | -0/+22 |
* | Add missing HelloJob require. | Kasper Timm Hansen | 2015-08-05 | 1 | -0/+1 |
* | Fixes #20799 | Johannes Opper | 2015-08-04 | 2 | -0/+36 |
* | Improve error message when serializing unsaved records for jobs | Faraz Yashar | 2015-06-28 | 1 | -0/+7 |
* | Fix spelling mistakes | Yoong Kang Lim | 2015-05-25 | 1 | -4/+4 |
* | Merge pull request #19969 from y-yagi/fix_job_helper_method | Yves Senn | 2015-05-01 | 1 | -0/+22 |
* | `ActiveJob::Base#queue_adapter` is now a `class_attribute` | Tamir Duberstein | 2015-03-11 | 2 | -5/+46 |
* | `ActiveJob::QueueAdapters::*` are no longer singletons | Tamir Duberstein | 2015-03-11 | 3 | -2/+26 |
* | Fix naming collision | Tamir Duberstein | 2015-03-11 | 1 | -1/+1 |
* | Fix leaky `only: …` option for Active Job assertions | Jeremy Kemper | 2015-03-06 | 1 | -0/+8 |
* | `ActiveJob::QueueAdapters::TestAdapter` is now a singleton | Tamir Duberstein | 2015-02-23 | 1 | -1/+1 |
* | Changed the AJADAPTER to AJ_ADAPTER | Jeroen van Baarsen | 2015-02-22 | 1 | -2/+2 |
* | Add an `:only` option to `perform_enqueued_jobs` to filter jobs based on | Michael Ryan | 2015-02-06 | 1 | -0/+78 |