Sha256: 5b2c82783f87dcd554551fe4427c49ff1965a7316e21120d3ef97c97abcdf089
Contents?: true
Size: 317 Bytes
Versions: 1
Compression:
Stored size: 317 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/gmail_cli/(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gmail_cli-0.1.0 | Guardfile |