Module: ActionView::Helpers::RecordTagHelper

Included in:
ActionView::Helpers
Defined in:
lib/action_view/helpers/record_tag_helper.rb

Instance Method Summary collapse

Instance Method Details

#content_tag_forObject

:nodoc:

Raises:

  • (NoMethodError)


14
15
16
17
18
19
20
# File 'lib/action_view/helpers/record_tag_helper.rb', line 14

def (*) # :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" \
    "  gem 'record_tag_helper', '~> 1.0'\n" \
    "Consult the Rails upgrade guide for details."
end

#div_forObject

:nodoc:

Raises:

  • (NoMethodError)


6
7
8
9
10
11
12
# File 'lib/action_view/helpers/record_tag_helper.rb', line 6

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" \
    "  gem 'record_tag_helper', '~> 1.0'\n" \
    "Consult the Rails upgrade guide for details."
end