Sha256: 746f222ff5314f1d6dcd3d48dc93fcf9ab03ef362cc3ac663fed60c6c5f40b03
Contents?: true
Size: 326 Bytes
Versions: 38
Compression:
Stored size: 326 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :cli => "--color --format nested --fail-fast", :version => 2, :notification => false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "rspec" } end
Version data entries
38 entries across 38 versions & 1 rubygems