Sha256: 79ef0668d8cd8ce3c91ccd1b9b4cf11959dfa81644e07c91c3713a2bffcc7683

Contents?: true

Size: 334 Bytes

Versions: 7

Compression:

Stored size: 334 Bytes

Contents

#!/usr/bin/env ruby
#^syntax detection

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

guard 'rspec' do
  watch(%r{^ventable\.gemspec}) { "spec"}
  watch(%r{^lib/(.+)\.rb$}) { "spec" }

  watch(%r{^spec/.+_spec\.rb$})
  watch('spec/spec_helper.rb')  { "spec" }
  watch(%r{spec/support/.*}) { "spec" }
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ventable-1.2.0 Guardfile
ventable-1.0.0 Guardfile
ventable-0.0.6 Guardfile
ventable-0.0.5 Guardfile
ventable-0.0.4 Guardfile
ventable-0.0.3 Guardfile
ventable-0.0.2 Guardfile