Sha256: 820fbbc2716017fb71c5f9f58e4e7f6656c58914b6456adc1f741354fe2c0a82
Contents?: true
Size: 492 Bytes
Versions: 3
Compression:
Stored size: 492 Bytes
Contents
guard :bundler do watch('tide-api.gemspec') end guard :bundler_audit, run_on_start: true do watch('Gemfile.lock') end group :tests do guard :rspec, all_on_start: true, cmd: 'COVERAGE=false bundle exec rspec --format progress' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { 'spec' } end end guard :rubocop do watch(/.+\.rb$/) watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tide-api-0.4.0 | Guardfile |
tide-api-0.3.0 | Guardfile |
tide-api-0.2.0 | Guardfile |