Sha256: 9f41b6e6dcc1673fd69132f50c20a697048a2d205ae4adc239cf69d4fbe4fa9b

Contents?: true

Size: 896 Bytes

Versions: 7

Compression:

Stored size: 896 Bytes

Contents

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

# Note: The cmd option is now required due to the increasing number of ways
#       rspec may be run, below are examples of the most common uses.
#  * bundler: 'bundle exec rspec'
#  * bundler binstubs: 'bin/rspec'
#  * spring: 'bin/rsspec' (This will use spring if running and you have
#                          installed the spring binstubs per the docs)
#  * zeus: 'zeus rspec' (requires the server to be started separetly)
#  * 'just' rspec: 'rspec'
guard :rspec, cmd: 'bundle exec rspec', all_after_pass: true, all_on_start: true do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/riak/(.+)\.rb$})     { |m| "spec/riak/#{m[1]}_spec.rb" }
  watch(%r{^lib/riak/client/}) { 'spec/riak/beefcake_protobuffs_backend' }
  watch('spec/spec_helper.rb')  { "spec" }

  watch(/^spec\/integration/) { 'spec:integration' }
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
riak-client-2.5.0 Guardfile
riak-client-2.3.0 Guardfile
riak-client-2.2.2 Guardfile
riak-client-2.2.1 Guardfile
riak-client-noenc-1.0.0 Guardfile
riak-client-2.2.0 Guardfile
riak-client-2.2.0.pre1 Guardfile