FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
shipengine-ruby/Guardfile at main · query-string/shipengine-ruby · GitHub
query-string
/
shipengine-ruby
Public
forked from
ShipEngine/shipengine-ruby
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
shipengine-ruby
/
Guardfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
14 lines (11 loc) · 512 Bytes
Breadcrumbs
shipengine-ruby
/
Guardfile
Copy path
File metadata and controls
14 lines (11 loc) · 512 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true
# More info at https://github.com/guard/guard#readme
guard
:minitest
do
watch
(
%r{^lib/(.*)
\.
rb$}
)
{
'test'
}
# run all tests if code is modified
watch
(
%r{^test/(.*)_test
\.
rb$}
)
# only run specific test file if test is modified
# configuration
watch
(
%r{^test/test_helper
\.
rb$}
)
{
'test'
}
watch
(
%r{^test/test_utility/(.*)
\.
rb$}
)
{
'test'
}
end
# https://stackoverflow.com/questions/23571163/clear-previous-tests-in-rspec-while-running-new-tests-using-guard
clearing
:on
Back
|
FazBrowse Home
|
New Git URL