diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/zorglub/node.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/zorglub/node.rb b/lib/zorglub/node.rb index ad4408c..7f81c2e 100644 --- a/lib/zorglub/node.rb +++ b/lib/zorglub/node.rb @@ -213,8 +213,11 @@ module Zorglub File.join(Config.static_base_path, @options[:view])+ext end # - def view view=nil - @options[:view] = view unless view.nil? or view.empty? + def view! view + @options[:view] = view + end + # + def view return '' if @options[:view].nil? File.join(Config.view_base_path, @options[:view])+ext end |