class ActionView::Template::Text

:nodoc:
:nodoc:
= Action View Text Template
:nodoc:

def format

def format
  :text
end

def identifier

def identifier
  "text template"
end

def initialize(string)

def initialize(string)
  @string = string.to_s
end

def render(*args)

def render(*args)
  to_str
end

def to_str

def to_str
  @string
end