diff --git a/lib/guard/rocco.rb b/lib/guard/rocco.rb index ff8ee4f..e3b7046 100644 --- a/lib/guard/rocco.rb +++ b/lib/guard/rocco.rb @@ -42,7 +42,9 @@ module Guard end def rocco_options - @options[:stylesheet] ? {stylesheet: @options[:stylesheet]} : {} + opts = @options.dup + opts.delete(:dir) + opts end end end