# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :version => 2, :cli => "--color --format Fuubar --profile", keep_failed: false, all_on_start: false, all_after_pass: false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/active_export/(.+)\.rb$}) { |m| "spec/active_export/#{m[1]}_spec.rb" } watch('lib/active_export.rb') { "spec" } watch('spec/spec_helper.rb') { "spec" } end