Sha256: 06f153c022faf35d0f46e2ffdd982093dde8d0c788333a18299a96571f452c77

Contents?: true

Size: 273 Bytes

Versions: 5

Compression:

Stored size: 273 Bytes

Contents

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

guard :rspec, cmd: 'bundle exec rspec' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/migration_bundler/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
migration_bundler-1.4.0 Guardfile
migration_bundler-1.3.3 Guardfile
migration_bundler-1.3.2 Guardfile
migration_bundler-1.3.1 Guardfile
migration_bundler-1.3.0 Guardfile