Sha256: 1019fb0e3aa849fe92732e5aeaa9c6d9416b4a48dd08162273ee065259cf4b88

Contents?: true

Size: 438 Bytes

Versions: 10

Compression:

Stored size: 438 Bytes

Contents

guard :rake, task: 'compile' do
  watch(%r{^ext/(.+)\.[ch]$})
end

guard :rspec, cmd: 'bundle exec rspec --color --fail-fast' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { 'spec' }
  watch(%r{^ext/(.+)\.[ch]$})   { 'spec' }
end

guard :rubocop, cli: '-D -a' do
  watch(/.+\.rb$/)
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ios_parser-0.9.0 Guardfile
ios_parser-0.8.0 Guardfile
ios_parser-0.7.1 Guardfile
ios_parser-0.7.0 Guardfile
ios_parser-0.6.0 Guardfile
ios_parser-0.5.2-java Guardfile
ios_parser-0.5.2 Guardfile
ios_parser-0.5.1 Guardfile
ios_parser-0.5.1-java Guardfile
ios_parser-0.5.0 Guardfile