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
2013-06-20 17:23:15 +02:00

34 lines
558 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
def inspect
'text template'
end
def to_str
@string
end
def render(*args)
to_str
end
def formats
[@type.to_sym]
end
end
end
end