Sha256: effe96279c8d2bb174e5fb452f573dde5246048ae107d62986c31659c9bd7d63
Contents?: true
Size: 479 Bytes
Versions: 34
Compression:
Stored size: 479 Bytes
Contents
guard 'spork' do watch('Gemfile') watch('spec/spec_helper.rb') { :rspec } end guard 'yard', stdout: '/dev/null', stderr: '/dev/null' do watch(%r{app/.+\.rb}) watch(%r{lib/.+\.rb}) watch(%r{ext/.+\.c}) end guard 'rspec', cli: "--color --drb --format Fuubar", all_on_start: false, all_after_pass: false do watch(%r{^spec/unit/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
34 entries across 34 versions & 3 rubygems