Sha256: 373e30585ede7645a88828a80bcbce31869f4693513065569e5e8b99db5c5c5c
Contents?: true
Size: 435 Bytes
Versions: 3
Compression:
Stored size: 435 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'bundler' do watch('Gemfile') watch(/^.+\.gemspec/) end guard 'ctags-bundler', src_path: ["lib", "spec/support"] do watch(/^(lib|spec\/support)\/.*\.rb$/) watch('Gemfile.lock') end guard 'rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
msewage-importer-0.0.3 | Guardfile |
msewage-importer-0.0.2 | Guardfile |
msewage-importer-0.0.1 | Guardfile |