Sha256: 7ea5a3e70128af74b4fe6ae5188020ff857e31e61e144bef8946834345c1e9a3

Contents?: true

Size: 257 Bytes

Versions: 5

Compression:

Stored size: 257 Bytes

Contents

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

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
morfo-0.2.0 Guardfile
morfo-0.1.0 Guardfile
morfo-0.0.3 Guardfile
morfo-0.0.2 Guardfile
morfo-0.0.1 Guardfile