Sha256: 3d87fb5b39836c2a38199ec6f5db2f047ed3f9a2fc8e0fd54cefbe665dcde070
Contents?: true
Size: 490 Bytes
Versions: 17
Compression:
Stored size: 490 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :version => 2, :cli => "--colour --fail-fast --format nested" do watch(%r{^spec/.+_spec\.rb}) watch(%r{^lib/(.+)\.rb}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/blazing/(.+)\.rb}) { |m| "spec/blazing/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^lib/blazing/templates/(.+)}) { "spec" } watch('lib/blazing/runner.rb') { "spec/blazing/integration/*" } end
Version data entries
17 entries across 17 versions & 1 rubygems