When I run the command below guard complains that it can't find a cucumber task what the heck and I doing wrong ?
Thanks in advance.
→ guard 'cucumber', :cli => '--tags ~@manual ~@wip'
Could not find task "cucumber,".
my Guardfile looks like this
# A sample Guardfile
guard 'cucumber' do
watch(%r{^features/.+\.feature$})
watch(%r{^features/support/.+$}) { 'features' }
watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
end