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