Sha256: 8c3a019b8f98570457fd32246d7921115f935ccac40f23693180cb10cbd6f37c
Contents?: true
Size: 809 Bytes
Versions: 89
Compression:
Stored size: 809 Bytes
Contents
# frozen_string_literal: true module ActionView module Helpers #:nodoc: module RecordTagHelper 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 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" \ " gem 'record_tag_helper', '~> 1.0'\n" \ "Consult the Rails upgrade guide for details." end end end end
Version data entries
89 entries across 89 versions & 4 rubygems