From 208e3a22636f7a491d176614c2a88b731dce5f51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81mi=20Pre=CC=81vost?= Date: Sat, 8 Oct 2011 10:37:53 -0400 Subject: [PATCH] Use empty options hash by default --- lib/teamocil/layout.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/teamocil/layout.rb b/lib/teamocil/layout.rb index f75ab04..7aee13c 100644 --- a/lib/teamocil/layout.rb +++ b/lib/teamocil/layout.rb @@ -6,7 +6,7 @@ module Teamocil # # @param layout [Hash] the parsed layout # @param options [Hash] some options - def initialize(layout, options) # {{{ + def initialize(layout, options={}) # {{{ @layout = layout @options = options end # }}}