Sha256: 3bbca8757811161f9adea0ff3f2d9e0a5091e38106ce4cb28ce8f247216db4bb
Contents?: true
Size: 318 Bytes
Versions: 2
Compression:
Stored size: 318 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :rspec, cmd: 'bundle exec rspec', all_on_start: false, all_after_pass: false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/cancannible/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cancannible-2.1.0 | Guardfile |
cancannible-2.0.0 | Guardfile |