Sha256: 40c3076e152cb944f9ac36d745a1390a5627291c8f01f805e548b2b2699bb676

Contents?: true

Size: 309 Bytes

Versions: 18

Compression:

Stored size: 309 Bytes

Contents

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

guard 'rspec' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch(%r{^lib/([^/]+)/(.+)\.rb$}) { |m| "spec/#{m[1]}/#{m[2]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
osm-1.0.5 Guardfile
osm-1.0.4 Guardfile
osm-1.0.3 Guardfile
osm-1.0.4.dev Guardfile
osm-1.0.2 Guardfile
osm-1.0.1 Guardfile
osm-1.0.0 Guardfile
osm-0.6.3 Guardfile
osm-0.6.2 Guardfile
osm-0.6.1 Guardfile
osm-0.6.0 Guardfile
osm-0.5.0 Guardfile
osm-0.4.2 Guardfile
osm-0.4.1 Guardfile
osm-0.4.0 Guardfile
osm-0.3.0 Guardfile
osm-0.2.2 Guardfile
osm-0.2.0 Guardfile