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/text.rb
2016-09-16 17:28:58 +03:00

32 lines
583 B
Ruby

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