aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_job_basics.md
Commit message (Collapse)AuthorAgeFilesLines
* - Added documentation for ActiveJob queue adapter for a specific job.Mohit Natoo2016-04-201-0/+12
| | | | | | | | [ci skip] Added note on child class maintaining parent's queue adapter. [ci skip] Added note on child class maintaining parent's queue adapter. [ci skip] removed documentation for child class inheriting the queue adapter.
* Change the default adapter from inline to asyncDavid Heinemeier Hansson2016-02-051-4/+6
|
* Add job suffix to sample's job file nameManu2016-01-051-2/+2
|
* Fixed wording.Mike Boone2015-11-081-1/+1
|
* [ci skip] Add backend queue starting documentationschneems2015-10-161-3/+12
| | | | If you can't start your queue, you won't process much. This change adds external links to the Queue backends that have Active Job specific docs.
* Fix "Esperanto" nameMiguel Parramon2015-10-071-1/+1
| | | | | Correct spelling is "Esperanto": https://en.wikipedia.org/wiki/Esperanto
* [ci skip] How to pass arguments to ActiveJob JobsDhia Eddine Chouchane2015-08-131-5/+12
| | | | | | | | | | | | | | | | | | | | 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)
* Merge pull request #20800 from xijo/make_active_job_locale_awareKasper Timm Hansen2015-08-041-0/+13
|\ | | | | Make ActiveJob locale aware
| * Fixes #20799Johannes Opper2015-08-041-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Deserialization section on guides at ActiveJob ExceptionMauro George2015-07-081-0/+7
|/ | | | [ci skip]
* Wrong documentation about Rails autoload on active_jobs_basics doc [ci skip]Mehmet Emin İNAÇ2015-06-141-19/+0
| | | | By default Rails automaticaly loads all files under the app directory
* Extended 'Active Job Basics' edge guide with more detailed information and ↵Andreas Metzger2015-06-141-12/+41
| | | | | | an additional step [ci skip] Normalized use of 'queueing'/'queuing' in the document.
* Spell out "asynchronously" instead of async in guides [ci skip]Prathamesh Sonpatki2015-04-191-1/+1
|
* add active job testing section [ci skip]David Fernandez2015-04-161-0/+7
|
* Use sentence case for consistency in commentsMarcel Morgan2015-02-201-5/+5
| | | | [ci skip]
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-01-151-8/+10
|\
| * Fixed spacing issues on code comments in ActiveJob Basics guide.Vipul A M2015-01-141-7/+9
| | | | | | | | | | Before: http://take.ms/z39h2 After: http://take.ms/Mo0G3
| * GlobalID::Identification has been mixed into AR not AMCristian Bica2015-01-081-1/+1
| |
* | - Changed `IN` to `ON` in markdown renderer conditionVipul A M2015-01-141-1/+1
|/ | | | - Changed `IN` to `ON` in all note sentences in guides.
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-01-031-1/+0
|\
| * [ci skip] :scissors: a blank line from code (Active Job Guide).Juanito Fatas2015-01-021-1/+0
| |
* | Merge pull request #18274 from rajcybage/spell_fixRobin Dupret2014-12-311-2/+2
|\ \ | | | | | | Fix spell life cycle on activejob docs [ci skip]
| * | Fix spell life cycle on activejob docs [ ci skip]Rajarshi Das2014-12-311-2/+2
| | |
* | | warn about reading guides in GitHubXavier Noria2014-12-231-0/+2
| |/ |/| | | | | References #18148.
* | Fix default queue name prefix delimiterEric Skogen2014-12-121-1/+1
| | | | | | | | | | Now displays as underscore, and not an empty string, when converted from markdown to HTML. Escaped the underscore per http://daringfireball.net/projects/markdown/syntax#em Fixes rails/rails#18009
* | [CI SKIP] Improvements to Active Job guide.Guo Xiang Tan2014-11-201-10/+12
| |
* | [CI SKIP] Missing space.Guo Xiang Tan2014-11-161-1/+1
| |
* | Tiny documentation fixes and styling improvementsRobin Dupret2014-11-011-10/+15
| | | | | | | | [ci skip]
* | Tiny documentation improvements [ci skip]Robin Dupret2014-10-311-5/+4
| |
* | correct GlobalID mixin name in the guidesChris Moylan2014-10-291-1/+1
| |
* | Added queue_name_delimiter attribute.Terry Meacham2014-10-261-0/+23
| | | | | | | | | | | | | | | | - 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.
* | Tiny follow-up to #16999 [ci skip]Robin Dupret2014-09-271-1/+1
| | | | | | | | | | | | * Fix a typo * Remove references to Rails version * Remove an extra whitespace
* | Added RDoc for each Active Job adapterCristian Bica2014-09-221-35/+7
| |
* | Standardize on `Rails.application` [ci skip]Tamir Duberstein2014-09-191-1/+1
|/ | | | This seems to be the style settled on in most of the templates.
* Active Job refactoringCristian Bica2014-09-031-6/+38
|
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2014-09-031-1/+1
|\
| * Highlight Class/Module [ci skip]Harshad Sabne2014-08-311-1/+1
| |
| * Fix typo in ActiveJob guide [ci skip]प्रथमेश2014-08-261-1/+1
| |
* | ActiveJob: Implemented enqueue_at for QueueClassicCristian Bica2014-09-021-12/+17
| |
* | Fix example code in Active Job guide [ci skip]yuuji.yaginuma2014-08-231-1/+1
| |
* | Merge pull request #16655 from brocktimus/20140823_doco_changeZachary Scott2014-08-231-1/+1
|\ \ | | | | | | Correct AR::RecordNotFound in AJ guide rescue example [ci skip]
| * | Properly referencing AR::RecordNotFound in AJ guide rescuing exampleBrock Trappitt2014-08-231-1/+1
| |/
* | Merge pull request #16641 from cristianbica/aj-backburner-enqueue-laterRafael Mendonça França2014-08-221-4/+4
|\ \ | | | | | | Implemented enqueue_at for ActiveJob's Backburner adapter
| * | Implemented enqueue_at for ActiveJob's Backburner adapterCristian Bica2014-08-221-4/+4
| | |
* | | Active Job guide: Add info about queue_name prefix and clarity supporter ↵Cristian Bica2014-08-221-2/+23
|/ / | | | | | | features
* | ActiveJob -> Active Job [ci skip]Xavier Noria2014-08-211-1/+1
| | | | | | | | See http://guides.rubyonrails.org/api_documentation_guidelines.html#wording
* | Fix a few typos/some grammar in Active Job BasicsLogan Hasson2014-08-201-8/+8
| |
* | Merge pull request #16582 from cristianbica/actionmailer-deprecate-deliverRafael Mendonça França2014-08-201-3/+3
|\ \ | | | | | | Deprecated ActionMailer .deliver and updated ActionMailer / ActiveJob docs/guide
| * | Updated rdoc / guides / release notes related to ActiveJob / ActionMailerCristian Bica2014-08-201-3/+3
| |/
* / [ci skip] Format pass of Active Job Basics guide.Juanito Fatas2014-08-201-16/+22
|/