StarkAndWayne/bosh-bootstrap

View on GitHub
Guardfile

Summary

Maintainability
Test Coverage
guard 'rspec', spec_paths: ["spec/unit"] do
  watch(%r{^spec/unit/(.+_spec)\.rb$})
  watch(%r{^lib/bosh/cli/commands/(.+)\.rb$})    { |m| "spec/unit/cli" }
  watch(%r{^lib/bosh-bootstrap/cli/commands/(.+)\.rb$})    { |m| "spec/unit/commands/#{m[1]}_spec.rb" }
  watch(%r{^lib/bosh-bootstrap/(.+)\.rb$})    { |m| "spec/unit/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec/unit" }
end