I installed the guard-rspec gem for use in my rails application. When I start protection from the command line through bundle exec guard , it starts the whole test package for the first time without problems.
However, whenever I make any changes to the spec file or any files viewed as indicated in my Guardfile, the Guard does not seem to recognize the changes, and no tests are repeated.
I even tried putting something explicit in my Guardfile as follows:
watch("app/views/orders/new.html.erb") { "spec/requests/orders_spec.rb" }
which should run my orders_spec.rb test to run when I edit and save new.html.erb correctly? Well, when I edit it and click save, nothing happens, not even an error or warning.
Has anyone managed to run Guard on Windows or run into a similar problem?
source share