aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template/text.rb
blob: f81174d707363f8a6379f44d2986ad323db6c0b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActionView #:nodoc:
  class TextTemplate < String #:nodoc:
    
    def render(*) self end
    
    def exempt_from_layout?() false end
    
  end
end