Sha256: 77f95906712444ec6192524fe11514bcf969f0cf25f1bc53b1facb1bf1be3874
Contents?: true
Size: 749 Bytes
Versions: 46
Compression:
Stored size: 749 Bytes
Contents
module ActionView module Helpers module RecordTagHelper def div_for(*) 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 def content_tag_for(*) 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 end end end
Version data entries
46 entries across 46 versions & 4 rubygems