blob: 04f5b8d17a82b181923cb07e911f21fdeea2cc7b (
plain) (
tree)
|
|
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.respond_to?(:ref) ? @type.ref : @type.to_s]
end
end
end
end
|