blob: f7d0df5ba0b65d320512cded7d335c3f2f3b1f30 (
plain) (
tree)
|
|
module ActionView #:nodoc:
class TextTemplate < String #:nodoc:
def initialize(string, content_type = Mime[:html])
super(string.to_s)
@content_type = Mime[content_type] || content_type
end
def details
{:formats => [@content_type.to_sym]}
end
def identifier
self
end
def inspect
'inline template'
end
def render(*args)
self
end
def mime_type
@content_type
end
def formats
[mime_type]
end
def partial?
false
end
end
end
|