Sha256: 1199adb55137d33ce042e7979dd6f2688e8fe0755a8d4fb37040be7b3688a977

Contents?: true

Size: 373 Bytes

Versions: 1

Compression:

Stored size: 373 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/remote.rb')  { "spec" }
  watch('*.gemspec')  { "spec" }
  watch('Gemfile')  { "spec" }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gom-script-0.2.2 Guardfile