aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorMarc Rendl Ignacio <marcrendlignacio@gmail.com>2017-07-21 09:02:47 +0800
committerMarc Rendl Ignacio <marcrendlignacio@gmail.com>2017-07-21 09:02:47 +0800
commitec80bacf6f21801c73b5887cc4bfb943de83ada6 (patch)
tree99d60a2c5ee84768f4394c38ec19e9074a0ea257 /actionview
parenta9c7eaea5d180ffd827cc9b34e173755af3df0c1 (diff)
downloadrails-ec80bacf6f21801c73b5887cc4bfb943de83ada6.tar.gz
rails-ec80bacf6f21801c73b5887cc4bfb943de83ada6.tar.bz2
rails-ec80bacf6f21801c73b5887cc4bfb943de83ada6.zip
Suppress documentation for content_tag_for and div_for since they were removed already
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/helpers/record_tag_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/helpers/record_tag_helper.rb b/actionview/lib/action_view/helpers/record_tag_helper.rb
index f7ee573035..ad59006386 100644
--- a/actionview/lib/action_view/helpers/record_tag_helper.rb
+++ b/actionview/lib/action_view/helpers/record_tag_helper.rb
@@ -1,7 +1,7 @@
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 @@ module ActionView
"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" \