Sha256: fa0f7c788db7140b94330b272451b10d15319fbcda03329db0abd9faf690dae9

Contents?: true

Size: 321 Bytes

Versions: 18

Compression:

Stored size: 321 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{^routemaster/(.+)\.rb$})   { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')        { "spec" }
  watch(%r{^spec/support/(.+)\.rb$})  { "spec" }
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
routemaster-client-3.2.3 Guardfile
routemaster-client-3.2.0 Guardfile
routemaster-client-3.1.2 Guardfile
routemaster-client-3.1.1 Guardfile
routemaster-client-3.1.0 Guardfile
routemaster-client-3.0.0 Guardfile
routemaster-client-2.1.0 Guardfile
routemaster-client-2.0.0 Guardfile
routemaster-client-1.2.3 Guardfile
routemaster-client-1.3.1 Guardfile
routemaster-client-1.2.2 Guardfile
routemaster-client-1.2.1 Guardfile
routemaster-client-1.2.0 Guardfile
routemaster-client-1.1.0 Guardfile
routemaster-client-1.0.0 Guardfile
routemaster-client-0.0.3 Guardfile
routemaster-client-0.0.2 Guardfile
routemaster-client-0.0.1 Guardfile