Sha256: 3293e2e99ce72cbd14b95deea75004dedba5129f3116a66023168b8df5e58acb

Contents?: true

Size: 280 Bytes

Versions: 2

Compression:

Stored size: 280 Bytes

Contents

rspec_options = {
  :all_after_pass => false,
}

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

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
toystore-0.13.2 Guardfile
toystore-0.13.1 Guardfile