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