class ActionView::Template::Text

:nodoc:

def formats

def formats
  [@type.ref]
end

def identifier

def identifier
  "text template"
end

def initialize(string)

def initialize(string)
  @string = string.to_s
  @type = Types[:text]
end

def render(*args)

def render(*args)
  to_str
end

def to_str

def to_str
  @string
end