Sha256: 4758e6ee08aad07690185729a66887bef1c1b1fea5128b7a8a4868deb4439880

Contents?: true

Size: 384 Bytes

Versions: 2

Compression:

Stored size: 384 Bytes

Contents

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

guard :rspec, :cli => '--format nested --debug --color' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }

  watch('spec/spec_helper.rb')  { "spec" }
  watch('lib/gom/core.rb')  { "spec" }
  watch('*.gemspec')  { "spec" }
  watch('Gemfile')  { "spec" }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gom-core-0.2.4 Guardfile
gom-core-0.2.3 Guardfile