Sha256: 0c375598029e234f52e4f19ca2667c003ca0f97e29154066acad3e136661b0cc

Contents?: true

Size: 283 Bytes

Versions: 5

Compression:

Stored size: 283 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard :rspec, :all_on_start => false, :all_after_pass => false do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
synchronisable-1.1.8 Guardfile
synchronisable-1.1.7 Guardfile
synchronisable-1.1.6 Guardfile
synchronisable-1.1.5 Guardfile
synchronisable-1.1.4 Guardfile