Sha256: 6d533d62a39fd845433384cab2126b871f2fc07040fddb9f9ac2da5c1a73826b
Contents?: true
Size: 448 Bytes
Versions: 4
Compression:
Stored size: 448 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$}) { |m| m } 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ios_parser-0.4.1 | Guardfile |
ios_parser-0.4.0 | Guardfile |
ios_parser-0.3.3 | Guardfile |
ios_parser-0.3.1 | Guardfile |