Skip to content

Commit ec80bac

Browse files
committed
Suppress documentation for content_tag_for and div_for since they were removed already
1 parent a9c7eae commit ec80bac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actionview/lib/action_view/helpers/record_tag_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
module ActionView
22
module Helpers
33
module RecordTagHelper
4-
def div_for(*)
4+
def div_for(*) # :nodoc:
55
raise NoMethodError, "The `div_for` method has been removed from " \
66
"Rails. To continue using it, add the `record_tag_helper` gem to " \
77
"your Gemfile:\n" \
88
" gem 'record_tag_helper', '~> 1.0'\n" \
99
"Consult the Rails upgrade guide for details."
1010
end
1111

12-
def content_tag_for(*)
12+
def content_tag_for(*) # :nodoc:
1313
raise NoMethodError, "The `content_tag_for` method has been removed from " \
1414
"Rails. To continue using it, add the `record_tag_helper` gem to " \
1515
"your Gemfile:\n" \

0 commit comments

Comments
 (0)