aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template/text.rb
blob: 446c735ba3dbaaeb8981a23e71476815311e27b5 (plain) (blame)
1
2
3
4
5
6
7
8
module ActionView #:nodoc:
  class TextTemplate < String #:nodoc:
    
    def render(*) self end
    
    def mime_type() Mime::HTML end
  end
end