aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib
Commit message (Collapse)AuthorAgeFilesLines
* Prep Rails 5 beta 4eileencodes2016-04-271-1/+1
|
* Fix typo in ActiveJob #retry_job docGraeme Boy2016-04-231-1/+1
|
* - [ci skip] Active Job Async doesn't support to Async feature as per it's ↵Mohit Natoo2016-04-221-1/+2
| | | | | | | | | | | | definition. - [ci skip] Active Job Async doesn't support to Async feature as per it's definition. - [ci skip] Active Job Async doesn't support to Async feature as per it's definition. - [ci skip] Active Job Async doesn't support to Async feature as per it's definition. - [ci skip] Active Job Async doesn't support to Async feature as per it's definition.
* Merge pull request #24165 from y-yagi/generate_application_job_when_not_existEileen M. Uchitelle2016-04-092-0/+19
|\ | | | | generate ApplicationJob if it does not already exist
| * generate ApplicationJob if it does not already existyuuji.yaginuma2016-03-252-0/+19
| | | | | | | | | | | | ActiveJob jobs now inherit from ApplicationJob by default. However, when updating to Rails 5 from the old Rails, since there is a possibility that ApplicationJob does not exist.
* | update `assert_no_performed_jobs` doc to use `assert_no_performed_jobs` ↵yuuji.yaginuma2016-03-301-18/+5
|/ | | | method [ci skip]
* Add JSON round trip verification testcaseMike Perham2016-03-091-1/+1
|
* Job payload should be symmetric across JSON dump/loadMike Perham2016-03-091-1/+1
| | | Placing non-native JSON data types, like symbols, in the hash to serialize means that the deserialize method will return something different from what was serialized, a common bug and source of frustration for devs.
* Use AS::Reloader to support reloading in ActiveJobMatthew Draper2016-03-023-2/+18
|
* Active Job: smaller footprint for the dev/test async adapterJeremy Daer2016-02-293-85/+98
| | | | | Use one shared worker pool for all queues with 0-#CPU workers rather than separate pools per queue with 2-10*#CPU workers each.
* Do not define methods in the included blockRafael Mendonça França2016-02-241-293/+289
| | | | Instance methods can be defined in the module itself
* Prep release for Rails 5 beta3eileencodes2016-02-241-1/+1
|
* [ci skip] Fix enqueuing spelling to maintain consistencyAbhishek Jain2016-02-123-3/+3
|
* fix typo in `assert_enqueued_jobs` example [ci skip]yuuji.yaginuma2016-02-071-1/+1
|
* Missed a few spots in inline -> async switchDavid Heinemeier Hansson2016-02-052-2/+2
|
* Change the default adapter from inline to asyncDavid Heinemeier Hansson2016-02-051-3/+3
|
* Preparing for Rails 5.0.0.beta2Sean Griffin2016-02-011-1/+1
|
* Update sucker_punch adapter's descriptionJon Moss2016-01-271-6/+4
| | | | [ci skip]
* Update ActiveJob adapter for sucker_punch 2.0Jon Moss2016-01-272-3/+14
| | | | | | | | This PR includes two changes for 2.0.0: - Breaking API change around `async.perform` --> `perform_async` - New addition of `perform_in`, which now allows end users of the adapter to use the `enqueued_at` public API method.
* Merge branch '5-0-beta-sec'Aaron Patterson2016-01-251-1/+1
|\ | | | | | | | | | | | | | | | | | | | | * 5-0-beta-sec: bumping version fix version update task to deal with .beta1.1 Eliminate instance level writers for class accessors allow :file to be outside rails root, but anything else must be inside the rails view directory Don't short-circuit reject_if proc stop caching mime types globally use secure string comparisons for basic auth username / password
| * bumping versionAaron Patterson2016-01-251-1/+1
| |
* | Merge pull request #22487 from joshsoftware/issue_22413Santiago Pastorino2016-01-011-2/+2
|\ \ | | | | | | Added support for bigdecimals in perform_later
| * | Added support for bigdecimals in perform laterSiva Gollapalli2015-12-031-2/+2
| | |
* | | Update copyright notices to 2016 [ci skip]Rashmi Yadav2015-12-311-1/+1
| |/ |/|
* | Change `alpha` to `beta1` to prep for release of Rails 5eileencodes2015-12-181-1/+1
|/ | | | :tada: :beers:
* Fixed wording.Mike Boone2015-11-081-1/+1
|
* Require only necessary concurrent-ruby classes.Jerry D'Antonio2015-11-041-1/+4
|
* Deprecate exception#original_exception in favor of exception#causeYuki Nishijima2015-11-031-9/+16
|
* Merge pull request #21878 from Gaurav2728/require_monitorMatthew Draper2015-10-101-1/+1
|\ | | | | monitor is require for SneakersAdapter
| * monitor is require for SneakersAdapterGaurav Sharma2015-10-061-1/+1
| | | | | | we are using `@monitor = Monitor.new` that inherit from Monitor class, we leave behind this commit https://github.com/rails/rails/commit/cbfc8b36
* | Added missing specs for not modifying queues when using AJ test helpersWojciech Wnętrzak2015-10-071-14/+10
|/
* Merge pull request #21854 from morgoth/fix-serializing-at-option-in-aj-matchersYves Senn2015-10-051-4/+11
|\ | | | | | | Fixed serializing `:at` option for `assert_eqnueued_with` and `assert_performed_with`
| * Fixed serializing `:at` option for `assert_enqueued_with` and ↵Wojciech Wnętrzak2015-10-031-4/+11
| | | | | | | | `assert_performed_with`
* | Merge pull request #20116 from cristianbica/activejob-enqueue-loggingArthur Nogueira Neves2015-10-041-1/+1
|\ \ | |/ |/| ActiveJob - log enqueued message only after the job was successfully enqueued
| * ActiveJob - log enqueued message only after the job was successfully enqueuedCristian Bica2015-05-111-1/+1
| |
* | Support passing array to `assert_enqueued_jobs` in `:only` optionWojciech Wnętrzak2015-10-031-1/+1
| |
* | Do not document private methods in AJ::TestHelperWojciech Wnętrzak2015-10-021-5/+5
| | | | | | | | [CI skip]
* | Merge pull request #19425 from wvengen/feature/activejob-priority-masterRafael Mendonça França2015-09-256-4/+62
|\ \ | | | | | | Add job priorities to ActiveJob
| * | Add job priorities to ActiveJobwvengen2015-09-176-4/+62
| | |
* | | Replaced `ThreadSafe::Map` with successor `Concurrent::Map`.Jerry D'Antonio2015-09-191-2/+1
|/ / | | | | | | | | | | | | The thread_safe gem is being deprecated and all its code has been merged into the concurrent-ruby gem. The new class, Concurrent::Map, is exactly the same as its predecessor except for fixes to two bugs discovered during the merge.
* | Properly log nested parameters to Active JobMarek Pieczyk2015-09-081-1/+15
| | | | | | | | Refactor arguments logging method for Active Job
* | Initial implementation of ActiveJob AsyncAdapter.Jerry D'Antonio2015-08-254-0/+108
| |
* | Fix typo on method nameRafael Mendonça França2015-08-161-3/+3
| | | | | | | | [Robin Dupret]
* | implement `provider_job_id` for `queue_classic`.Yves Senn2015-08-131-2/+6
| | | | | | | | | | | | The latest, currently unreleased, version of queue_classic is required for this to work. See https://github.com/QueueClassic/queue_classic/pull/262 for more details.
* | Make assert_enqueued_with and assert_performed_with returns the matched jobJean Boussier2015-08-101-2/+11
| |
* | Merge pull request #21145 from toydestroyer/masterYves Senn2015-08-061-15/+14
|\ \ | | | | | | | | | | | | | | | [ci skip] Documentation: update queue_classic info in Active Job adapters list
| * | Documentation: update queue_classic info in Active Job adapters listSergey Toy2015-08-061-4/+3
|/ /
* | Merge pull request #20800 from xijo/make_active_job_locale_awareKasper Timm Hansen2015-08-043-1/+19
|\ \ | | | | | | Make ActiveJob locale aware
| * | Fixes #20799Johannes Opper2015-08-043-1/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Add `:nodoc:` for internal testing methods [ci skip]Robin Dupret2015-07-281-2/+2
|/ /