Sha256: ed92bd1aa59e308f36828cb65a10f49f455bb38c3b83c03a862e0a405f578655

Contents?: true

Size: 339 Bytes

Versions: 3

Compression:

Stored size: 339 Bytes

Contents

guard :rspec, all_after_pass: false, all_on_start: false 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 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.1 Guardfile
kintone-0.1.0 Guardfile
kintone-0.0.5 Guardfile