Sha256: fa86c1dd7273a8b22f0cf16e77e43848c3e2e1699d8f1712b7330a8b7da20321

Contents?: true

Size: 316 Bytes

Versions: 9

Compression:

Stored size: 316 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', :cli => "--color --format nested --fail-fast --drb", :notification => false 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

9 entries across 9 versions & 1 rubygems

Version Path
mad_chatter-0.3.4 Guardfile
mad_chatter-0.3.3 Guardfile
mad_chatter-0.3.2 Guardfile
mad_chatter-0.3.1 Guardfile
mad_chatter-0.3.0 Guardfile
mad_chatter-0.2.9 Guardfile
mad_chatter-0.2.8 Guardfile
mad_chatter-0.2.7 Guardfile
mad_chatter-0.2.6 Guardfile