Currently, Guard::Setuper reloads just the Guardfile when it changes.
I\'m loading some additional code into my guard file (via require
), and I\'d like to a
You could probably try something like this in your Guardfile (using guard-shell):
guard :shell do
watch(%r{path/to/your/required/files}) { Guard.evaluator.reevaluate_guardfile }
end
@Zach: Up-to-date documentation is at http://guardgem.org (usage) and http://rubydoc.info/github/guard/guard/master/frames (technical).