Sha256: 89df34d2ac3eab1822f8232588d2c4dddfbb44d57d52a44ee1f0cf95995a75d3

Contents?: true

Size: 520 Bytes

Versions: 7

Compression:

Stored size: 520 Bytes

Contents

rspec_options = {
  cmd: 'rspec -f documentation',
  failed_mode: :keep,
  all_after_pass: true,
  all_on_start: true,
  run_all: {cmd: 'rspec -f progress'}
}

guard 'rspec', rspec_options do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('lib/roadie.rb')        { "spec" }
  watch('lib/roadie/errors.rb') { "spec" }

  watch(%r{lib/roadie/rspec/.*\.rb}) { "spec" }

  watch(%r{spec/support/.*\.rb}) { "spec" }
  watch('spec/spec_helper.rb')   { "spec" }
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
roadie-3.3.0 Guardfile
roadie-3.2.2 Guardfile
roadie-3.2.1 Guardfile
roadie-3.2.0 Guardfile
roadie-3.1.1 Guardfile
roadie-3.1.0 Guardfile
roadie-3.1.0.rc1 Guardfile