aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template/text.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2009-03-20 16:13:13 -0700
committerYehuda Katz <wycats@gmail.com>2009-03-23 10:23:14 -0700
commit81e814adfad6d4bba1af5f70a5a409f6d71f8f6c (patch)
treea1dfa746191d7509f6f695b2e99d5a7f79278b91 /actionpack/lib/action_view/template/text.rb
parent90c079a7814a9a996c8cbe353015c080fafce2bc (diff)
downloadrails-81e814adfad6d4bba1af5f70a5a409f6d71f8f6c.tar.gz
rails-81e814adfad6d4bba1af5f70a5a409f6d71f8f6c.tar.bz2
rails-81e814adfad6d4bba1af5f70a5a409f6d71f8f6c.zip
Working on being able to render :text with layouts
Diffstat (limited to 'actionpack/lib/action_view/template/text.rb')
-rw-r--r--actionpack/lib/action_view/template/text.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template/text.rb b/actionpack/lib/action_view/template/text.rb
new file mode 100644
index 0000000000..f81174d707
--- /dev/null
+++ b/actionpack/lib/action_view/template/text.rb
@@ -0,0 +1,9 @@
+module ActionView #:nodoc:
+ class TextTemplate < String #:nodoc:
+
+ def render(*) self end
+
+ def exempt_from_layout?() false end
+
+ end
+end