From 54a2c6335aaf7daf2db27e45576893a5790f42f6 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Tue, 2 Jul 2024 14:34:58 +0200 Subject: [PATCH] Guardfile: Drop very old generated code comment [ci skip] --- Guardfile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Guardfile b/Guardfile index f93bc135..f2b82323 100644 --- a/Guardfile +++ b/Guardfile @@ -1,11 +1,3 @@ -# 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" }