Sha256: 25c4738bcdea0904b4a51244908b25f967bb4b1dea97b0ccb14a1812341c0664

Contents?: true

Size: 371 Bytes

Versions: 1

Compression:

Stored size: 371 Bytes

Contents

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

guard 'rspec', :version => 2, :cli => '-d' 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

1 entries across 1 versions & 1 rubygems

Version Path
gom-core-0.2.2 Guardfile