fix hash handling

This commit is contained in:
John Bintz 2011-10-02 09:47:34 -04:00
parent c1510cfdcc
commit ee8e506d02

View File

@ -42,7 +42,9 @@ module Guard
end end
def rocco_options def rocco_options
@options[:stylesheet] ? {stylesheet: @options[:stylesheet]} : {} opts = @options.dup
opts.delete(:dir)
opts
end end
end end
end end