Sha256: 382543e8d669c206dca6f45149fd7f723f474c3ea58588cd9ae190345a24f392

Contents?: true

Size: 311 Bytes

Versions: 6

Compression:

Stored size: 311 Bytes

Contents

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

guard :rspec, cmd: "bundle exec rspec", all_on_start: false, all_after_pass: 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

6 entries across 6 versions & 1 rubygems

Version Path
mandrill-rails-1.5.0 Guardfile
mandrill-rails-1.4.1 Guardfile
mandrill-rails-1.4.0 Guardfile
mandrill-rails-1.3.1 Guardfile
mandrill-rails-1.3.0 Guardfile
mandrill-rails-1.2.0 Guardfile