Sha256: ea9379ef134a2521b2a850ece47ad35f4822a71823929376e61af651aa5f5a16
Contents?: true
Size: 351 Bytes
Versions: 7
Compression:
Stored size: 351 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :cli => '--color --format Fuubar' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/yml_reader/#{m[1]}_spec.rb" } watch(%r{^(.+)\.rb$}) { |m| "spec/yml_reader/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
yml_reader-0.7 | Guardfile |
yml_reader-0.6 | Guardfile |
yml_reader-0.5 | Guardfile |
yml_reader-0.4 | Guardfile |
yml_reader-0.3 | Guardfile |
yml_reader-0.2 | Guardfile |
yml_reader-0.1 | Guardfile |