Sha256: e74aaa0e62ea32b7da35c2a360927c2843072566f182b294f25184833ae8a420
Contents?: true
Size: 641 Bytes
Versions: 17
Compression:
Stored size: 641 Bytes
Contents
notification :off guard 'spork' do watch('Gemfile') watch('spec/spec_helper.rb') { :rspec } watch(%r{^spec/support/.+\.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{^spec/acceptance/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^spec/support/.+\.rb$}) { "spec" } end
Version data entries
17 entries across 17 versions & 1 rubygems