Sha256: 898072f84892a7bb0931017469193b6e22854fc59d119a47d4d0d314a2c0cdfe
Contents?: true
Size: 331 Bytes
Versions: 10
Compression:
Stored size: 331 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', cmd: "bundle exec rspec" 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{^spec/support/(.+)\.rb$}) { "spec" } end
Version data entries
10 entries across 10 versions & 2 rubygems