Sha256: b804636334f9e25630f7ed08ae26e94d7ffa10977d1274e2443ef0a0daffe16a

Contents?: true

Size: 460 Bytes

Versions: 13

Compression:

Stored size: 460 Bytes

Contents

# frozen_string_literal: true
guard 'rspec', cmd: 'bundle exec rspec -f Fuubar' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/healthy/(.+)\.rb$}) { |m| ["spec/unit/#{m[1]}_spec.rb", "spec/integration"] }
  watch('spec/spec_helper.rb') { "spec" }
  watch(%r{^spec/fixtures/([^_]+)_.*.xml}) { |m| "spec/integration/#{m[1]}_spec.rb" }
end

guard :rubocop, cli: ['-D'] do
  watch(/.+\.rb$/)
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
roqua-healthy-1.5.10 Guardfile
roqua-healthy-1.5.9 Guardfile
roqua-healthy-1.5.8 Guardfile
roqua-healthy-1.5.7 Guardfile
roqua-healthy-1.5.6 Guardfile
roqua-healthy-1.5.5 Guardfile
roqua-healthy-1.5.4 Guardfile
roqua-healthy-1.5.3 Guardfile
roqua-healthy-1.5.2 Guardfile
roqua-healthy-1.5.1 Guardfile
roqua-healthy-1.5.0 Guardfile
roqua-healthy-1.4.3 Guardfile
roqua-healthy-1.4.2 Guardfile