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

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