Sha256: 78f84d7259787511ff30af4b568c9a015f992dca9e15be5521e07fbd8dbb7e9b

Contents?: true

Size: 292 Bytes

Versions: 1

Compression:

Stored size: 292 Bytes

Contents

#!/usr/bin/env ruby

guard 'rspec', cli: '--fail-fast --tag ~@slow:true' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

guard 'bundler' do
  watch('Gemfile')
  watch('soloist.gemspec')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
soloist-1.0.0.pre Guardfile