Sha256: b06a0b04c1f9d503103a2abd3ad7027c2fa180609a12e18008c5de402306d51f
Contents?: true
Size: 450 Bytes
Versions: 4
Compression:
Stored size: 450 Bytes
Contents
# frozen_string_literal: true guard 'rspec', cmd: 'bundle exec rspec' 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
roqua-healthy-1.6.0 | Guardfile |
roqua-healthy-1.5.13 | Guardfile |
roqua-healthy-1.5.12 | Guardfile |
roqua-healthy-1.5.11 | Guardfile |