1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

[ci skip] ActionView and ActionMailer CHANGELOG docs fixes

This commit is contained in:
Akshay Vishnoi 2014-09-18 03:40:51 +05:30
parent 57a893b54a
commit 8841f45129
2 changed files with 8 additions and 8 deletions

View file

@ -1,13 +1,13 @@
* Added #deliver_later, #deliver_now and deprecate #deliver in favour of
#deliver_now. #deliver_later will enqueue a job to render and deliver
* Added `#deliver_later`, `#deliver_now` and deprecate `#deliver` in favour of
`#deliver_now`. `#deliver_later` will enqueue a job to render and deliver
the mail instead of delivering it right at that moment. The job is enqueued
using the new Active Job framework in Rails, and will use whatever queue is
configured for Rails.
*DHH/Abdelkader Boudih/Cristian Bica*
* Make ActionMailer::Previews methods class methods. Previously they were
instance methods and ActionMailer tries to render a message when they
* Make `ActionMailer::Previews` methods class methods. Previously they were
instance methods and `ActionMailer` tries to render a message when they
are called.
*Cristian Bica*

View file

@ -127,12 +127,12 @@
Before:
#=> favicon_link_tag 'myicon.ico'
# => favicon_link_tag 'myicon.ico'
<link href="/assets/myicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
After:
#=> favicon_link_tag 'myicon.ico'
# => favicon_link_tag 'myicon.ico'
<link href="/assets/myicon.ico" rel="shortcut icon" type="image/x-icon" />
*Geoffroy Lorieux*
@ -145,7 +145,7 @@
*Joost Baaij*
* `collection_check_boxes` respects `:index` option for the hidden filed name.
* `collection_check_boxes` respects `:index` option for the hidden field name.
Fixes #14147.
@ -166,7 +166,7 @@
*Vasiliy Ermolovich*
* Fixed a problem where the default options for the `button_tag` helper is not
* Fixed a problem where the default options for the `button_tag` helper are not
applied correctly.
Fixes #14254.