Sha256: 9c9121271f8becb4c90383ab647614f0ae9c4985dbe9c3fc25ecc0c93100ded9

Contents?: true

Size: 1.06 KB

Versions: 10

Compression:

Stored size: 1.06 KB

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('lib/mb/config_validator.rb') { "spec/unit/mb/config_spec.rb" }
  watch('spec/spec_helper.rb')        { "spec" }
end

guard 'cucumber', cli: "--drb --require features --format pretty", all_on_start: false, all_after_pass: false do
  watch(%r{^features/.+\.feature$})
  watch(%r{^features/support/.+$})                      { 'features' }
  watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }

  watch(%r{^lib/mb/cli.rb})                             { 'features/core' }
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
motherbrain-1.1.3 Guardfile
motherbrain-1.1.2 Guardfile
motherbrain-1.1.1 Guardfile
motherbrain-1.1.0 Guardfile
motherbrain-1.0.0 Guardfile
motherbrain-0.14.5 Guardfile
motherbrain-0.14.4 Guardfile
motherbrain-0.14.3 Guardfile
motherbrain-0.14.2 Guardfile
motherbrain-0.13.1 Guardfile