Sha256: 3eef9acf3ddad33c8ee668437b4175fd1bbfd3d474db9fa7f35b91c45745cdf7
Contents?: true
Size: 333 Bytes
Versions: 12
Compression:
Stored size: 333 Bytes
Contents
#!/usr/bin/env ruby #^syntax detection # A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec' do watch(%r{^warp-dir\.gemspec}) { "spec"} watch(%r{^lib/(.+)\.rb$}) { "spec" } watch(%r{^spec/.+_spec\.rb$}) watch('spec/spec_helper.rb') { "spec" } watch(%r{spec/support/.*}) { "spec" } end
Version data entries
12 entries across 12 versions & 1 rubygems