Simple guard file
guard 'phpunit', :all_on_start => false do
watch(%r{^tests/+Test\.php$})
end
This runs correctly, but I also want to watch the files in the source code directory which is outside of the directory containing both the Guardfile and the tests directory. Is this possible?
e.g I want to include the line: watch(%r{^../path/to/my/src/(.+)\.php$})
I have tried similar variations of the above but guard php-unit doesn't pick up anything.
Thanks!