Guardfile in open_ehr-1.0.0 vs Guardfile in open_ehr-1.0.1

- old
+ new

@@ -1,10 +1,12 @@ -guard 'rspec' do +guard 'spork' do + watch('spec/spec_helper.rb') +end + +guard 'rspec', :version => 2, :cli => '--drb' do watch(%r{^spec/.+_spec\.rb}) watch(%r{^lib/(.+)\.rb}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^lib/open_ehr/parser/.+\.tt}) { "spec/lib/open_ehr/parser" } end -guard 'spork', :wait => 30, :cucumber => false do - watch('spec/spec_helper.rb') -end +notification :libnotify, :timeout => 5, :transient => true, :append => false