Sha256: fd726f2693943e4b9d4a68495af1c3a19acd929d62f84bea6bf902167e4d924b

Contents?: true

Size: 368 Bytes

Versions: 14

Compression:

Stored size: 368 Bytes

Contents

# Config file for Guard
# More info at https://github.com/guard/guard#readme

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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
praxis-mapper-4.5 Guardfile
praxis-mapper-4.4.1 Guardfile
praxis-mapper-4.4 Guardfile
praxis-mapper-4.3 Guardfile
praxis-mapper-4.2 Guardfile
praxis-mapper-4.1.2 Guardfile
praxis-mapper-4.1.1 Guardfile
praxis-mapper-4.1 Guardfile
praxis-mapper-4.0 Guardfile
praxis-mapper-3.4.0 Guardfile
praxis-mapper-3.3 Guardfile
praxis-mapper-3.2 Guardfile
praxis-mapper-3.1.2 Guardfile
praxis-mapper-3.1.1 Guardfile