Sha256: 0a1d8e6af95b020b9d1df9b2be0378fd3d7056d549f5d2ede1062512a3ce4125

Contents?: true

Size: 282 Bytes

Versions: 71

Compression:

Stored size: 282 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard :rspec, cmd: 'bundle exec rspec' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/volt/(.+)\.rb$})     { |m| puts 'RUN AGAIN'; "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { 'spec' }
end

Version data entries

71 entries across 71 versions & 1 rubygems

Version Path
volt-0.8.24 Guardfile
volt-0.8.23 Guardfile
volt-0.8.22 Guardfile
volt-0.8.22.beta2 Guardfile
volt-0.8.22.beta1 Guardfile
volt-0.8.21 Guardfile
volt-0.8.20 Guardfile
volt-0.8.19 Guardfile
volt-0.8.18 Guardfile
volt-0.8.17 Guardfile
volt-0.8.16 Guardfile