Sha256: 434203baf78d8b2ea59ed7737795cf9c99d108439058d18d04a789206f7e86c3

Contents?: true

Size: 531 Bytes

Versions: 37

Compression:

Stored size: 531 Bytes

Contents

# frozen_string_literal: true

module ActionView # :nodoc:
  # = Action View HTML Template
  class Template # :nodoc:
    class HTML # :nodoc:
      attr_reader :type

      def initialize(string, type)
        @string = string.to_s
        @type   = type
      end

      def identifier
        "html template"
      end

      alias_method :inspect, :identifier

      def to_str
        ERB::Util.h(@string)
      end

      def render(*args)
        to_str
      end

      def format
        @type
      end
    end
  end
end

Version data entries

37 entries across 35 versions & 4 rubygems

Version Path
actionview-7.0.8.6 lib/action_view/template/html.rb
actionview-7.0.8.5 lib/action_view/template/html.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.0.8.4/lib/action_view/template/html.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/template/html.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/template/html.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/template/html.rb
actionview-7.0.8.4 lib/action_view/template/html.rb
actionview-7.0.8.1 lib/action_view/template/html.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-7.0.3.1/lib/action_view/template/html.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-7.0.2.3/lib/action_view/template/html.rb
actionview-7.0.8 lib/action_view/template/html.rb
actionview-7.0.7.2 lib/action_view/template/html.rb
actionview-7.0.7.1 lib/action_view/template/html.rb
actionview-7.0.7 lib/action_view/template/html.rb
actionview-7.0.6 lib/action_view/template/html.rb
actionview-7.0.5.1 lib/action_view/template/html.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.2.3/lib/action_view/template/html.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.3.1/lib/action_view/template/html.rb
actionview-7.0.5 lib/action_view/template/html.rb
actionview-7.0.4.3 lib/action_view/template/html.rb