I am trying to use Guard
instead of Autotest
for RSpec
, but I'm somewhat confused by its behavior. When I run bundle exec guard
it just launches a pry
window. I thought it is supposed to behave like Autotest where it just continues to run tests in the background every time there is a change. What am I missing here?
When I launch bundle exec guard
, this is what I get:
18:52:44 - INFO - Guard is using TerminalTitle to send notifications.
18:52:44 - INFO - Guard::RSpec is running
18:52:44 - INFO - Guard is now watching at '/path/to/my/application'
[1] guard(main)>
I'm not really sure what to make of this.