forked from mtsmfm/language_server-ruby
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGuardfile
More file actions
Latest commit
9 lines (8 loc) · 336 Bytes
/
Copy pathGuardfile
File metadata and controls
9 lines (8 loc) · 336 Bytes
1
2
3
4
5
6
7
8
9
# More info at https://github.com/guard/guard#readme
guard:minitest,all_after_pass: truedo
# with Minitest::Unit
watch(%r{^test/(.*)\/?test_(.*)\.rb$})
watch(%r{^test/(.*)\/?(.*)_test\.rb$})
watch(%r{^lib/(.*/)?([^/]+)\.rb$}){ |m| "test/#{m[1]}test_#{m[2]}.rb"}
watch(%r{^test/test_helper\.rb$}){'test'}
end