Sha256: 35db0580226e9859d87b1e880e8d4e6527a274cb684ca039f50029113ce34029

Contents?: true

Size: 672 Bytes

Versions: 6

Compression:

Stored size: 672 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/#{m[1]}_spec.rb" }
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
minitel-0.5.0 Guardfile
minitel-0.4.0 Guardfile
minitel-0.3.0 Guardfile
minitel-0.2.0 Guardfile
minitel-0.1.1 Guardfile
minitel-0.1.0 Guardfile