Sha256: e3975f488b27f410451c438be34a84731c9bdface5ac4363c953cfad04d60f8f

Contents?: true

Size: 1.24 KB

Versions: 4

Compression:

Stored size: 1.24 KB

Contents

guard 'spork' do
  watch('Gemfile')
  watch('spec/spec_helper.rb')  { :rspec }
  watch(%r{^features/support/}) { :cucumber }
end

unless RUBY_PLATFORM =~ /mswin|mingw|windows/
  guard 'yard', stdout: '/dev/null', stderr: '/dev/null' do
    watch(%r{app/.+\.rb})
    watch(%r{lib/.+\.rb})
    watch(%r{ext/.+\.c})
  end
end

rspec_cli = '--color --drb --format Fuubar'
rspec_cli += ' --tag ~@api_client --tag ~@not_supported_on_windows' if RUBY_PLATFORM =~ /mswin|mingw|windows/
guard 'rspec', cli: rspec_cli, 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

cucumber_cli = '--drb --format pretty --tags ~@no_run --tags ~@wip'
cucumber_cli += ' --tags ~@spawn --tags ~@api_server' if RUBY_PLATFORM =~ /mswin|mingw|windows/
guard 'cucumber', cli: cucumber_cli, 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/berkshelf/cli.rb})                      { 'features' }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
berkshelf-3.0.0.beta7 Guardfile
berkshelf-3.0.0.beta6 Guardfile
berkshelf-3.0.0.beta5 Guardfile
berkshelf-3.0.0.beta4 Guardfile