method

new

new(string, mime_type = nil)
public

No documentation available.

# File actionpack/lib/action_view/template/text.rb, line 7
      def initialize(string, mime_type = nil)
        super(string.to_s)
        @mime_type   = Mime[mime_type] || mime_type if mime_type
        @mime_type ||= Mime::TEXT
      end