Guardfile in draper-0.8.1 vs Guardfile in draper-0.9.0

- old
+ new

@@ -1,5 +1,5 @@ guard 'rspec', :version => 2, :notification => false do watch(%r{^spec/.+_spec\.rb$}) - watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } + watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end