Sha256: f846770dab1228de5d114d18043d6cc12d4c06d66d658ab2d59772d00b39220f

Contents?: true

Size: 411 Bytes

Versions: 7

Compression:

Stored size: 411 Bytes

Contents

# Encoding: utf-8

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

guard :rubocop, all_on_start: false do
  watch(%r{^spec/.+\.rb$})
  watch(%r{^lib/.+\.rb$})
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
chemistrykit-3.9.1 Guardfile
chemistrykit-3.9.0 Guardfile
chemistrykit-3.9.0.rc3 Guardfile
chemistrykit-3.9.0.rc2 Guardfile
chemistrykit-3.9.0.rc1 Guardfile
chemistrykit-3.8.1 Guardfile
chemistrykit-3.8.0 Guardfile