Sha256: 71c7aabfa7f9a6180bbccacc2d1ad168846c875255daf9387808bf5b3536d09b

Contents?: true

Size: 393 Bytes

Versions: 3

Compression:

Stored size: 393 Bytes

Contents

guard :rspec, all_after_pass: false, all_on_start: false, cmd: 'bundle exec rspec' do
  watch(%r{spec/.+_spec\.rb$})
  watch(%r{lib/(.+)\.rb$}) {|m| "spec/#{m[1]}_spec.rb"}
  watch(%r{lib/(.+)/.+\.rb$}) {|m| "spec/#{m[1]}_spec.rb"}
end

guard :rubocop, all_on_start: false, cmd: 'bundle exec rubocop' do
  watch(%r{.+\.rb$})
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kintone-0.1.4 Guardfile
kintone-0.1.3 Guardfile
kintone-0.1.2 Guardfile