Sha256: 4f04989eb36eb6d83c81b9090789108b3aacaacda0dd9933731de671cb0d810d
Contents?: true
Size: 476 Bytes
Versions: 67
Compression:
Stored size: 476 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('spec/spec_helper.rb') { 'spec' } end guard 'cucumber' do watch(%r{^features/.+\.feature$}) watch(%r{^features/support/.+$}) { 'features' } watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' } end
Version data entries
67 entries across 67 versions & 3 rubygems
Version | Path |
---|---|
citeproc-1.0.0.pre1 | Guardfile |
csl-1.0.0.pre6 | Guardfile |
csl-1.0.0.pre5 | Guardfile |
csl-1.0.0.pre4 | Guardfile |
csl-1.0.0.pre3 | Guardfile |
csl-1.0.0.pre2 | Guardfile |
csl-1.0.0.pre1 | Guardfile |