diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-04 01:32:51 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-04 01:32:51 +0100 |
commit | 18777bb83937837f673f3876c96b7fb8ce59835e (patch) | |
tree | c157de73bf0277982d449942379881a29b5e5893 /lib | |
parent | 4ea25ec27d1ec21f3945d0c9f34a5628c25d2aa4 (diff) | |
download | zorglub-18777bb83937837f673f3876c96b7fb8ce59835e.zip zorglub-18777bb83937837f673f3876c96b7fb8ce59835e.tar.gz |
add Node#no_layout and use it
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zorglub/node.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/zorglub/node.rb b/lib/zorglub/node.rb index f2aaa72..669f2c4 100644 --- a/lib/zorglub/node.rb +++ b/lib/zorglub/node.rb @@ -136,6 +136,10 @@ module Zorglub File.join(Config.layout_base_path, @action[:layout])+ Config.engine_ext(@action[:engine]) end # + def no_layout + @action[:layout] = nil + end + # def view view=nil @action[:view] = view unless view.nil? or view.empty? return '' if @action[:view].nil? |