Sha256: 10ee1e776fd43634fcc585b5ecd4a10b62d714641c3f984ed76a6f97a6a8011f
Contents?: true
Size: 343 Bytes
Versions: 3
Compression:
Stored size: 343 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch(%r{^app/(.+)\.rb$}) { |m| "spec/app/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch('spec/support/*') { "spec" } end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
activity_engine-0.0.2 | Guardfile |
satchel-0.0.2 | Guardfile |
satchel-0.0.1 | Guardfile |