Sha256: abde96a1d796f0fe47c824b3f800004db0917114109c54093f169c665e679163
Contents?: true
Size: 492 Bytes
Versions: 1
Compression:
Stored size: 492 Bytes
Contents
# frozen_string_literal: true guard :rspec, cmd: 'bundle exec rspec', failed_mode: :focus do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^spec/factories/(.+)\.rb$}) { |m| "spec/kirico/models/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { 'spec' } end guard :bundler do watch('Gemfile') watch(/^.+\.gemspec/) end guard :rubocop, all_on_start: true, cli: ['-D', '--format', 'clang'] do watch(/.+\.rb$/) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jpostcode-ait-0.1.1 | Guardfile |