Sha256: 5aed9b2a7073e251a3b572857faee8846649264131ba7a86406e0fa2af99ad79

Contents?: true

Size: 453 Bytes

Versions: 8

Compression:

Stored size: 453 Bytes

Contents

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

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

rspec_options = {
  all_after_pass: false,
  all_on_start: false,
  keep_failed: false
}

guard 'rspec', rspec_options do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$}) { |m| [
    "spec/unit/#{m[1]}_spec.rb",
    "spec/integration/#{m[1]}_spec.rb",
  ] }
  watch('spec/helper.rb')  { "spec" }
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
cassanity-0.6.0 Guardfile
cassanity-0.6.0.beta5 Guardfile
cassanity-0.6.0.beta4 Guardfile
cassanity-0.6.0.beta3 Guardfile
cassanity-0.6.0.beta2 Guardfile
cassanity-0.6.0.beta1 Guardfile
cassanity-0.5.1 Guardfile
cassanity-0.5.0 Guardfile