aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template/text.rb
blob: 84771152116cae234824809452d84463fde54e79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module ActionView #:nodoc:
  class TextTemplate < String #:nodoc:

    def identifier() self end
    
    def render(*) self end
    
    def mime_type() Mime::HTML end
  end
end