fix guard file

This commit is contained in:
Torsten Ruger 2017-09-04 21:30:53 +03:00
parent 4f3a4387fc
commit c6e241adeb
1 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ guard :minitest do # with Minitest::Unit
watch(%r{^lib/parfait/type.rb}) { Dir["test/parfait/type/test_*.rb"] }
# Vool to_mom compile process + # Ruby to vool compile process
watch(%r{^lib/vool/statements/(.+)_statement.rb}) { |m| ["test/vool/to_mom/test_#{m[1]}*.rb" ,"test/vool/statements/test_#{m[1]}.rb"] }
watch(%r{^lib/vool/statements/(.+)_statement.rb}) { |m|
[ Dir["test/vool/to_mom/test_#{m[1]}*.rb"] , "test/vool/statements/test_#{m[1]}.rb"] }
end