mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
18 lines
750 B
Ruby
18 lines
750 B
Ruby
# 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('auth.json') { 'spec/server_spec.rb' }
|
|
watch(%r{^(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
|
|
|
|
watch('spec/helpers.rb') { 'spec' }
|
|
watch(%r{^spec/.+_spec\.rb$})
|
|
end
|