I have a rails 4.0.2 project and I'm using guard 4.7.5, guard-minitest 2.2.0, and spring 1.1.0.
When my Guardfile reads:
guard :minitest, spring: true do
…
end
I get spring usage info when running guard.
As per the guard-minitest README, if my Guardfile reads:
guard :minitest, spring: 'rake test' do
…
end
it runs all the default tests (see rake -T
).
In fact, when running rake test
by itself, it doesn't matter what I type afterwards, it always runs the default tests. Running bundle exec rake test [whatever]
produces the same results.
What am I missing?