Sha256: 01d0e9e3070fe6db6886081d3dfc09572a005fc0ce255298aa4ac7663e30b956

Contents?: true

Size: 718 Bytes

Versions: 17

Compression:

Stored size: 718 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' 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

17 entries across 17 versions & 2 rubygems

Version Path
paul_bunyan-2.1.0 Guardfile
paul_bunyan-2.0.0 Guardfile
paul_bunyan-1.6.0 Guardfile
paul_bunyan-1.5.3 Guardfile
paul_bunyan-1.5.2 Guardfile
paul_bunyan-1.5.1 Guardfile
paul_bunyan-1.5.0 Guardfile
paul_bunyan-1.4.0 Guardfile
paul_bunyan-1.3.0 Guardfile
paul_bunyan-1.2.3 Guardfile
paul_bunyan-1.2.2 Guardfile
paul_bunyan-1.2.1 Guardfile
paul_bunyan-1.2.0 Guardfile
paul_bunyan-1.1.0 Guardfile
paul_bunyan-1.0.1 Guardfile
paul_bunyan-1.0.0 Guardfile
coloral-0.0.1 Guardfile