提交 81d7b985 编写于 作者: R Rafael França 提交者: GitHub

Merge pull request #29884 from padi/update_rails_5_upgrade_guide

Updates Rails upgrade guide on `ActionView::Helpers::RecordTagHelper`
module ActionView
module Helpers
module RecordTagHelper
def div_for(*)
def div_for(*) # :nodoc:
raise NoMethodError, "The `div_for` method has been removed from " \
"Rails. To continue using it, add the `record_tag_helper` gem to " \
"your Gemfile:\n" \
......@@ -9,7 +9,7 @@ def div_for(*)
"Consult the Rails upgrade guide for details."
end
def content_tag_for(*)
def content_tag_for(*) # :nodoc:
raise NoMethodError, "The `content_tag_for` method has been removed from " \
"Rails. To continue using it, add the `record_tag_helper` gem to " \
"your Gemfile:\n" \
......
......@@ -276,6 +276,16 @@ You can now just call the dependency once with a wildcard.
<% # Template Dependency: recordings/threads/events/* %>
```
### `ActionView::Helpers::RecordTagHelper` moved to external gem (record_tag_helper)
`content_tag_for` and `div_for` has been removed in favor of just using `content_tag`. To continue using it, add the `record_tag_helper` gem to your Gemfile:
```ruby
gem 'record_tag_helper', '~> 1.0'
```
See [#18411](https://github.com/rails/rails/pull/18411) for more details.
### Removed Support for `protected_attributes` Gem
The `protected_attributes` gem is no longer supported in Rails 5.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册