1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionview/lib/action_view/template/html.rb
Xavier Noria 66a7cfa910 applies new string literal convention in actionview/lib
The current code base is not uniform. After some discussion,
we have chosen to go with double quotes by default.
2016-08-06 18:48:35 +02:00

34 lines
607 B
Ruby

module ActionView #:nodoc:
# = Action View HTML Template
class Template
class HTML #:nodoc:
attr_accessor :type
def initialize(string, type = nil)
@string = string.to_s
@type = Types[type] || type if type
@type ||= Types[:html]
end
def identifier
"html template"
end
def inspect
"html template"
end
def to_str
ERB::Util.h(@string)
end
def render(*args)
to_str
end
def formats
[@type.respond_to?(:ref) ? @type.ref : @type.to_s]
end
end
end
end