Guardfile 188 Bytes Edit Raw Blame History 1 2 3 4 5 guard :rspec, cmd: "bin/rspec --color" do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end