Sha256: af963a6de92e55c49fbde2e827d3d2913d53cafdff816788fbd0627122d0a674

Contents?: true

Size: 339 Bytes

Versions: 6

Compression:

Stored size: 339 Bytes

Contents

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

guard 'rspec' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/bosh/cli/commands/cf.rb$})    { |m| "spec/unit/cf_command_spec.rb" }
  watch(%r{^lib/bosh-cloudfoundry/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bosh-cloudfoundry-0.6.1 Guardfile
bosh-cloudfoundry-0.6.0 Guardfile
bosh-cloudfoundry-0.5.1 Guardfile
bosh-cloudfoundry-0.5.0 Guardfile
bosh-cloudfoundry-0.4.1 Guardfile
bosh-cloudfoundry-0.4.0 Guardfile