Sha256: 251a80243e209c1443cc1c47e3b3b49135fe560d9930cfe2337373d6fdc3a911

Contents?: true

Size: 813 Bytes

Versions: 1

Compression:

Stored size: 813 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 " \
          "Quails. To continue using it, add the `record_tag_helper` gem to " \
          "your Gemfile:\n" \
          "  gem 'record_tag_helper', '~> 1.0'\n" \
          "Consult the Quails upgrade guide for details."
      end

      def content_tag_for(*) # :nodoc:
        raise NoMethodError, "The `content_tag_for` method has been removed from " \
          "Quails. To continue using it, add the `record_tag_helper` gem to " \
          "your Gemfile:\n" \
          "  gem 'record_tag_helper', '~> 1.0'\n" \
          "Consult the Quails upgrade guide for details."
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-on-quails-0.1.0 actionview/lib/action_view/helpers/record_tag_helper.rb