retest 2.0.0.pre5 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +73 -122
- data/bin/test/bundler-app +9 -2
- data/bin/test/ruby-app +1 -1
- data/exe/retest +4 -2
- data/lib/retest/command/base.rb +4 -16
- data/lib/retest/command.rb +11 -15
- data/lib/retest/program.rb +1 -4
- data/lib/retest/prompt.rb +11 -25
- data/lib/retest/runner.rb +11 -11
- data/lib/retest/setup.rb +1 -1
- data/lib/retest/version.rb +1 -1
- data/lib/retest/watcher.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4173047ece3fb83e7ffc7e9cf871266054fc3dc49974f55a7df1afa6957afd73
|
4
|
+
data.tar.gz: c4c5a285c4d2f9195b289ca6746d1adba4f77f3fd76d5006c70b10c003fa8a2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d66970c4c9f952d936cd34fc5291ea7bb8a0f2366d90b2c2f647991b4e286936c1c8e37a8dcca8151954c8bd353dbe79321b23ea22e6a2ecf8a39b1ae2dcaf2
|
7
|
+
data.tar.gz: 3c172835d39561da42eee00fc99a6561f57854d6f9f6fb59c50613ac8619d8ee56a4349404d45228f87ba37bd95a6fec39b4b445cc81c0fee958c6aaa972fef8
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
retest (2.0.
|
4
|
+
retest (2.0.1)
|
5
5
|
listen (~> 3.9)
|
6
6
|
observer (~> 0.1)
|
7
7
|
string-similarity (~> 2.1)
|
@@ -12,7 +12,7 @@ GEM
|
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
14
|
byebug (11.1.3)
|
15
|
-
ffi (1.17.
|
15
|
+
ffi (1.17.1)
|
16
16
|
listen (3.9.0)
|
17
17
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
18
18
|
rb-inotify (~> 0.9, >= 0.9.10)
|
data/README.md
CHANGED
@@ -1,156 +1,107 @@
|
|
1
1
|
[](https://badge.fury.io/rb/retest)
|
2
2
|
|
3
|
-
# Retest
|
3
|
+
# Retest: Your Go-To Testing Assistant for Ruby Projects
|
4
4
|
|
5
|
-
Retest is
|
5
|
+
Retest is the ultimate CLI tool for Ruby developers, designed to make your testing workflow seamless and efficient. It monitors file changes and automatically runs relevant tests, ensuring that your code remains solid as you refactor and develop.
|
6
6
|
|
7
|
-
|
7
|
+
With **zero setup required**, Retest works right out of the box on any Ruby project—no changes to your Gemfile, no unnecessary repo clutter, and no configuration headaches. It's lightweight, dev-centric, and ready to integrate into your workflow instantly.
|
8
8
|
|
9
|
+
## 🚀 **What Makes Retest Awesome?**
|
9
10
|
|
10
|
-
|
11
|
+
- **Plug-and-Play:** Start testing immediately—no installation hassles or setup scripts.
|
12
|
+
- **Project Independence:** Works with any Ruby project, no Gemfile modifications required.
|
13
|
+
- **Time-Saving Automation:** Automatically identifies and runs relevant tests as you code.
|
14
|
+
- **Customizable Workflows:** Tailor commands to your needs with placeholders, options, and interactive features.
|
15
|
+
- **Sound Notifications:** Get audible feedback for test results.
|
11
16
|
|
12
|
-
##
|
17
|
+
## 🎥 Demo
|
13
18
|
|
14
|
-
|
19
|
+
Discover Retest main functionalities in this small presentation
|
15
20
|
|
16
|
-
|
21
|
+
https://github.com/user-attachments/assets/5491bcad-134f-4843-9a6f-a474a1394e87
|
17
22
|
|
18
|
-
##
|
23
|
+
## 💡 **Why Use Retest?**
|
19
24
|
|
20
|
-
|
25
|
+
Testing frequently is the cornerstone of safe refactoring. Retest eliminates the friction of manual test execution by running tests after every file change, helping you stay just one `cmd + z` away from green tests.
|
21
26
|
|
22
|
-
|
27
|
+
## 🔧 **Quick Installation**
|
23
28
|
|
24
|
-
|
29
|
+
Install Retest globally in seconds:
|
25
30
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
#### 1. Run a hardcoded command
|
31
|
-
|
32
|
-
This the most simple usage of retest: running the same command over and over after each file update.
|
33
|
-
|
34
|
-
Example:
|
35
|
-
|
36
|
-
$ retest 'bundle exec rspec spec/features/posts_spec.rb'
|
37
|
-
|
38
|
-
In this example, the feature spec `spec/features/posts_spec.rb` will be tested after any ruby file is updated.
|
39
|
-
|
40
|
-
#### 2. Run a dynamic command with placeholders
|
41
|
-
|
42
|
-
Retest provides few placeholders to help you run a command after every file change. The placeholders can be used on their own or together.
|
43
|
-
|
44
|
-
1. `<test>` placeholder
|
45
|
-
|
46
|
-
You can use the placeholder `<test>` to tell the gem where to put the test file path in your command. When a file is changed, the gem will find its matching test and run the test command with it.
|
47
|
-
|
48
|
-
Example:
|
49
|
-
|
50
|
-
$ retest 'bin/rails test <test>'
|
51
|
-
|
52
|
-
In this example, if `app/models/post.rb` is changed then retest will run `bin/rails test test/models/post_test.rb`
|
53
|
-
|
54
|
-
2. `<changed>` placeholder
|
55
|
-
|
56
|
-
You can use the placeholder `<changed>` to tell the gem where to put the changed file path in your command. When a file is changed, the gem will run the command with it.
|
57
|
-
|
58
|
-
Example:
|
59
|
-
|
60
|
-
$ retest 'rubocop <changed>'
|
61
|
-
|
62
|
-
In this example, if `app/models/post.rb` is changed then retest will run `rubocop app/models/post.rb`
|
63
|
-
|
64
|
-
#### 3. Run a dynamic command with shortcuts
|
65
|
-
|
66
|
-
Few shortcut flags exist to avoid writing the full test command.
|
67
|
-
|
68
|
-
$ retest --rspec
|
69
|
-
$ retest --rails
|
70
|
-
$ retest --rake --all
|
71
|
-
|
72
|
-
#### 4. Let retest figure it all out
|
73
|
-
|
74
|
-
Let retest find your ruby setup and run the appropriate command using:
|
75
|
-
|
76
|
-
$ retest
|
77
|
-
$ retest --all
|
78
|
-
|
79
|
-
#### Running rules
|
80
|
-
|
81
|
-
The gem works as follows:
|
82
|
-
|
83
|
-
* When a **ruby file** is changed, retest will run its matching test.
|
84
|
-
* When a **test file** is changed, retest will run the test file.
|
85
|
-
* When multiple matching test files are found, retest asks you to confirm the file and save the answer.
|
86
|
-
* When a test file is not found, retest runs the last run command or throw a 404.
|
87
|
-
|
88
|
-
### Pull request scans
|
89
|
-
|
90
|
-
You can diff a branch and test all the relevant test files before pushing your branch and trigger a full CI suite.
|
91
|
-
|
92
|
-
$ retest --diff origin/main
|
93
|
-
|
94
|
-
In this example, retest lists all the files changed between `HEAD` and `origin/main`, finds all the relevant tests and only run those.
|
95
|
-
|
96
|
-
## Why?
|
97
|
-
It is advised to be one `cmd + z` away from green tests when refactoring. This means running tests after every line change. Let Retest rerun your tests after every file change you make.
|
98
|
-
|
99
|
-
Retest gem is meant to be simple and follow testing conventions encountered in Ruby projects. Give it a go you can uninstall it easily. If you think the matching pattern could be improved please raise an issue.
|
100
|
-
|
101
|
-
For fully fledged solutions, some cli tools already exists: [autotest](https://github.com/grosser/autotest), [guard](https://github.com/guard/guard), [zentest](https://github.com/seattlerb/zentest)
|
31
|
+
```bash
|
32
|
+
gem install retest
|
33
|
+
```
|
102
34
|
|
103
|
-
|
35
|
+
No need to add it to your Gemfile—just install and go!
|
104
36
|
|
105
|
-
|
37
|
+
## 🛠️ **Key Features**
|
106
38
|
|
39
|
+
### **Flexible Commands**
|
40
|
+
Run tests with your preferred commands, placeholders, or patterns:
|
107
41
|
```bash
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
# Install the gem and run retest in your container shell
|
112
|
-
$ gem install retest
|
113
|
-
$ retest 'bundle exec rails test <test>'
|
42
|
+
retest 'bin/rails test <test> && rubocop <changed>' # Flexible placeholders
|
43
|
+
retest --all # Run all tests on every file change
|
44
|
+
retest --diff origin/main # Test changes from a branch
|
114
45
|
```
|
115
46
|
|
116
|
-
|
117
|
-
|
118
|
-
* Aliases saved on ~/.bashrc or ~/.zshrc cannot be run that way with the `retest` command
|
47
|
+
### **Interactive Companion**
|
48
|
+
Stay in control with an interactive shell for test management. Start Retest and enter `h` to explore available commands.
|
119
49
|
|
120
|
-
|
50
|
+
```
|
51
|
+
Setup identified: [RAKE]. Using command: 'bundle exec rake test TEST=<test>'
|
52
|
+
Watcher: [WATCHEXEC]
|
53
|
+
Launching Retest...
|
54
|
+
Ready to refactor! You can make file changes now
|
55
|
+
|
56
|
+
Type interactive command and press enter. Enter 'h' for help.
|
57
|
+
> h
|
58
|
+
|
59
|
+
* 'h', 'help' # Prints help.
|
60
|
+
* 'p', 'pause' # Pauses Retest. Tests aren't run on file change events until unpaused.
|
61
|
+
* 'u', 'unpause' # Unpauses Retest.
|
62
|
+
* <ENTER> # Runs last changed triggered command.
|
63
|
+
* 'ra, 'run all' # Runs all tests.
|
64
|
+
* 'f', 'force' # Forces a selection of test to run on every file change.
|
65
|
+
* 'r', 'reset' # Disables forced selection.
|
66
|
+
* 'd', 'diff' [GIT BRANCH] # Runs matching specs that changed from a target branch.
|
67
|
+
* 'c' # Clears window.
|
68
|
+
* 'e', 'exit' # Exits Retest.
|
121
69
|
|
122
|
-
|
70
|
+
```
|
71
|
+
### **Supports Multiple Watchers**
|
72
|
+
Retest ships with [Listen](https://github.com/guard/listen) for file monitoring but can use the more performant [Watchexec](https://github.com/watchexec/watchexec) if installed.
|
123
73
|
|
124
|
-
|
74
|
+
To force a specific watcher:
|
75
|
+
```bash
|
76
|
+
retest -w watchexec
|
77
|
+
```
|
125
78
|
|
126
|
-
|
127
|
-
- [x] When multiple test files are found, ask which file to run and save the answer.
|
128
|
-
- [x] When a test file is not found run the last command again.
|
129
|
-
- [x] Run within Docker.
|
130
|
-
- [x] Handle main Ruby setups
|
131
|
-
- [x] Bundler Gem
|
132
|
-
- [x] Rails
|
133
|
-
- [x] Ad-hoc scripts
|
134
|
-
- [x] Hanami
|
135
|
-
- [ ] Handle other languages: Go, Elixir, Node, Python, PHP
|
136
|
-
- [ ] Go (project started)
|
137
|
-
- [ ] Aliases from oh-my-zsh and bash profiles?
|
79
|
+
## 🐳 **Works with Docker**
|
138
80
|
|
139
|
-
|
81
|
+
Retest can run inside Docker containers, ensuring your testing workflow stays consistent across environments.
|
140
82
|
|
141
|
-
|
83
|
+
```bash
|
84
|
+
# Inside your container shell
|
85
|
+
gem install retest
|
86
|
+
retest 'bundle exec rails test <test>'
|
87
|
+
```
|
142
88
|
|
143
|
-
|
89
|
+
## ❤️ **Contributing**
|
144
90
|
|
145
|
-
|
91
|
+
Got feedback or ideas? Join the discussion for Retest 2.0 and share your thoughts:
|
92
|
+
[Discussion - Retest V2.0 - Interactive Panel](https://github.com/AlexB52/retest/discussions/216)
|
146
93
|
|
147
|
-
|
94
|
+
Bug reports and pull requests are welcome at [GitHub](https://github.com/alexb52/retest).
|
148
95
|
|
149
|
-
##
|
96
|
+
## 🛠️ **Development**
|
150
97
|
|
151
|
-
|
98
|
+
Want to contribute to Retest? Follow these steps to set up your environment
|
152
99
|
|
100
|
+
1. Clone the repo and install dependencies: `bin/setup`
|
101
|
+
2. Run tests to ensure everything is working: `rake test`
|
102
|
+
3. Experiment with an interactive console: `bin/console`
|
103
|
+
4. To run integration tests (e.g., for a Hanami app): `bin/test/hanami-app`
|
153
104
|
|
154
|
-
## License
|
105
|
+
## 📜 **License**
|
155
106
|
|
156
|
-
|
107
|
+
Retest is open-source and available under the [MIT License](https://opensource.org/licenses/MIT).
|
data/bin/test/bundler-app
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
#!/usr/bin/env bash
|
2
2
|
|
3
|
+
FOLDER="features/bundler-app"
|
4
|
+
|
3
5
|
bundle install
|
4
6
|
bundle exec rake build
|
5
7
|
cp -R features/support features/bundler-app/retest
|
6
|
-
ls -t pkg | head -n1 | xargs -I {} mv pkg/{}
|
7
|
-
|
8
|
+
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} "$FOLDER/retest.gem"
|
9
|
+
|
10
|
+
if [[ "$1" == "--no-build" ]]; then
|
11
|
+
docker compose -f "$FOLDER/docker-compose.yml" up --exit-code-from retest
|
12
|
+
else
|
13
|
+
docker compose -f "$FOLDER/docker-compose.yml" up --build --exit-code-from retest
|
14
|
+
fi
|
data/bin/test/ruby-app
CHANGED
@@ -2,6 +2,6 @@
|
|
2
2
|
|
3
3
|
bundle install
|
4
4
|
bundle exec rake build
|
5
|
-
|
5
|
+
cp -R features/support features/ruby-app/retest
|
6
6
|
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} features/ruby-app/retest.gem
|
7
7
|
docker compose -f features/ruby-app/docker-compose.yml up --build --exit-code-from retest
|
data/exe/retest
CHANGED
@@ -46,7 +46,7 @@ end
|
|
46
46
|
|
47
47
|
if watcher == Retest::Watcher::Watchexec
|
48
48
|
puts "Watcher: [WATCHEXEC]"
|
49
|
-
else
|
49
|
+
else
|
50
50
|
puts "Watcher: [LISTEN]"
|
51
51
|
end
|
52
52
|
|
@@ -71,7 +71,6 @@ end
|
|
71
71
|
puts "Ready to refactor! You can make file changes now"
|
72
72
|
|
73
73
|
def run_command(input:, program:)
|
74
|
-
program.clear_terminal
|
75
74
|
case input.strip
|
76
75
|
when /^file changed:\s(.*)$/
|
77
76
|
puts "File changed: #{$1}"
|
@@ -104,6 +103,8 @@ def run_command(input:, program:)
|
|
104
103
|
program.run_all
|
105
104
|
when /^di?f?f?\s(.*)$/
|
106
105
|
program.diff($1)
|
106
|
+
when 'c'
|
107
|
+
program.clear_terminal
|
107
108
|
when 'h', 'help'
|
108
109
|
puts <<~HELP
|
109
110
|
|
@@ -115,6 +116,7 @@ def run_command(input:, program:)
|
|
115
116
|
* 'f', 'force' # Forces a selection of test to run on every file change.
|
116
117
|
* 'r', 'reset' # Disables forced selection.
|
117
118
|
* 'd', 'diff' [GIT BRANCH] # Runs matching specs that changed from a target branch.
|
119
|
+
* 'c' # Clears window.
|
118
120
|
* 'e', 'exit' # Exits Retest.
|
119
121
|
HELP
|
120
122
|
else
|
data/lib/retest/command/base.rb
CHANGED
@@ -13,6 +13,10 @@ module Retest
|
|
13
13
|
self.class.new(**{ all: all, file_system: file_system, command: command }.merge(params))
|
14
14
|
end
|
15
15
|
|
16
|
+
def hardcoded?
|
17
|
+
!has_changed? && !has_test?
|
18
|
+
end
|
19
|
+
|
16
20
|
def has_changed?
|
17
21
|
to_s.include?('<changed>')
|
18
22
|
end
|
@@ -21,22 +25,6 @@ module Retest
|
|
21
25
|
to_s.include?('<test>')
|
22
26
|
end
|
23
27
|
|
24
|
-
def changed_type?
|
25
|
-
!has_test? && has_changed?
|
26
|
-
end
|
27
|
-
|
28
|
-
def test_type?
|
29
|
-
has_test? && !has_changed?
|
30
|
-
end
|
31
|
-
|
32
|
-
def variable_type?
|
33
|
-
has_test? && has_changed?
|
34
|
-
end
|
35
|
-
|
36
|
-
def hardcoded_type?
|
37
|
-
!has_test? && !has_changed?
|
38
|
-
end
|
39
|
-
|
40
28
|
def to_s
|
41
29
|
@command
|
42
30
|
end
|
data/lib/retest/command.rb
CHANGED
@@ -27,17 +27,20 @@ module Retest
|
|
27
27
|
options_command || default_command
|
28
28
|
end
|
29
29
|
|
30
|
+
private
|
31
|
+
|
30
32
|
def options_command
|
31
|
-
if params[:command]
|
32
|
-
|
33
|
+
if params[:command] then hardcoded_command(params[:command])
|
34
|
+
elsif params[:rspec] then rspec_command
|
35
|
+
elsif params[:rails] then rails_command
|
36
|
+
elsif params[:ruby] then ruby_command
|
37
|
+
elsif params[:rake] then rake_command
|
33
38
|
end
|
39
|
+
end
|
34
40
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
elsif params[:rake] then rake_command
|
39
|
-
else
|
40
|
-
end
|
41
|
+
def default_command
|
42
|
+
log "Setup identified: [#{type.upcase}]. Using command: '#{setup_command}'"
|
43
|
+
setup_command
|
41
44
|
end
|
42
45
|
|
43
46
|
def setup_command
|
@@ -50,13 +53,6 @@ module Retest
|
|
50
53
|
end
|
51
54
|
end
|
52
55
|
|
53
|
-
def default_command
|
54
|
-
log "Setup identified: [#{type.upcase}]. Using command: '#{setup_command}'"
|
55
|
-
setup_command
|
56
|
-
end
|
57
|
-
|
58
|
-
private
|
59
|
-
|
60
56
|
def log(message)
|
61
57
|
@stdout&.puts(message)
|
62
58
|
end
|
data/lib/retest/program.rb
CHANGED
@@ -12,10 +12,9 @@ module Retest
|
|
12
12
|
def_delegators :runner,
|
13
13
|
:run_last_command, :last_command
|
14
14
|
|
15
|
-
def initialize(runner: nil, repository: nil,
|
15
|
+
def initialize(runner: nil, repository: nil, stdout: $stdout)
|
16
16
|
@runner = runner
|
17
17
|
@repository = repository
|
18
|
-
@clear_window = clear_window
|
19
18
|
@stdout = stdout
|
20
19
|
initialize_pause(false)
|
21
20
|
initialize_forced_selection([])
|
@@ -61,8 +60,6 @@ module Retest
|
|
61
60
|
end
|
62
61
|
|
63
62
|
def clear_terminal
|
64
|
-
return unless @clear_window
|
65
|
-
|
66
63
|
system('clear 2>/dev/null') || system('cls 2>/dev/null')
|
67
64
|
end
|
68
65
|
end
|
data/lib/retest/prompt.rb
CHANGED
@@ -9,27 +9,21 @@ module Retest
|
|
9
9
|
@question_asked = false
|
10
10
|
end
|
11
11
|
|
12
|
-
def question_asked?
|
13
|
-
@question_asked
|
14
|
-
end
|
15
|
-
|
16
12
|
def ask_which_test_to_use(path, files)
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
options = options(files)
|
13
|
+
changed
|
14
|
+
notify_observers(:question)
|
15
|
+
options = options(files)
|
21
16
|
|
22
|
-
|
23
|
-
|
17
|
+
output.puts(<<~QUESTION)
|
18
|
+
We found few tests matching: #{path}
|
24
19
|
|
25
|
-
|
20
|
+
#{list_options(options.keys)}
|
26
21
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
end
|
22
|
+
Which file do you want to use?
|
23
|
+
Enter the file number now:
|
24
|
+
QUESTION
|
25
|
+
output.print("> ")
|
26
|
+
options.values[input.gets.to_s.chomp.to_i]
|
33
27
|
end
|
34
28
|
|
35
29
|
def puts(*args)
|
@@ -40,14 +34,6 @@ module Retest
|
|
40
34
|
output.tap(&:rewind).read
|
41
35
|
end
|
42
36
|
|
43
|
-
def ask_question
|
44
|
-
old_question_asked = @question_asked
|
45
|
-
@question_asked = true
|
46
|
-
yield
|
47
|
-
ensure
|
48
|
-
@question_asked = old_question_asked
|
49
|
-
end
|
50
|
-
|
51
37
|
private
|
52
38
|
|
53
39
|
def options(files, blank_option: 'none')
|
data/lib/retest/runner.rb
CHANGED
@@ -6,23 +6,28 @@ module Retest
|
|
6
6
|
include Observable
|
7
7
|
include CachedTestFile
|
8
8
|
|
9
|
-
def_delegators :command,
|
10
|
-
:has_changed?, :has_test?,
|
11
|
-
:changed_type?, :test_type?, :variable_type?, :harcoded_type?
|
9
|
+
def_delegators :command, :has_changed?, :has_test?
|
12
10
|
|
13
11
|
attr_accessor :command, :stdout, :last_command
|
14
12
|
def initialize(command, stdout: $stdout)
|
15
13
|
@stdout = stdout
|
16
14
|
@command = command
|
15
|
+
if command.hardcoded?
|
16
|
+
self.last_command = command.to_s
|
17
|
+
end
|
17
18
|
end
|
18
19
|
|
19
20
|
def run_last_command
|
21
|
+
unless last_command
|
22
|
+
return log('Error - Not enough information to run a command. Please trigger a run first.')
|
23
|
+
end
|
24
|
+
|
20
25
|
system_run last_command
|
21
26
|
end
|
22
27
|
|
23
28
|
def run(changed_files: [], test_files: [])
|
24
29
|
self.last_command = format_instruction(changed_files: changed_files, test_files: test_files)
|
25
|
-
|
30
|
+
run_last_command
|
26
31
|
rescue FileNotFound => e
|
27
32
|
log("FileNotFound - #{e.message}")
|
28
33
|
rescue Command::MultipleTestsNotSupported => e
|
@@ -30,7 +35,8 @@ module Retest
|
|
30
35
|
end
|
31
36
|
|
32
37
|
def run_all
|
33
|
-
|
38
|
+
self.last_command = command.clone(all: true).to_s
|
39
|
+
run_last_command
|
34
40
|
end
|
35
41
|
|
36
42
|
def format_instruction(changed_files: [], test_files: [])
|
@@ -78,12 +84,6 @@ module Retest
|
|
78
84
|
|
79
85
|
private
|
80
86
|
|
81
|
-
def print_test_file_not_found
|
82
|
-
log(<<~ERROR)
|
83
|
-
FileNotFound - Retest could not find a matching test file to run.
|
84
|
-
ERROR
|
85
|
-
end
|
86
|
-
|
87
87
|
def system_run(command)
|
88
88
|
log("\n")
|
89
89
|
result = system(command) ? :tests_pass : :tests_fail
|
data/lib/retest/setup.rb
CHANGED
data/lib/retest/version.rb
CHANGED
data/lib/retest/watcher.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: retest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexandre Barret
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: string-similarity
|
@@ -156,11 +156,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
156
156
|
version: 2.5.0
|
157
157
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
158
158
|
requirements:
|
159
|
-
- - "
|
159
|
+
- - ">="
|
160
160
|
- !ruby/object:Gem::Version
|
161
|
-
version:
|
161
|
+
version: '0'
|
162
162
|
requirements: []
|
163
|
-
rubygems_version: 3.
|
163
|
+
rubygems_version: 3.1.6
|
164
164
|
signing_key:
|
165
165
|
specification_version: 4
|
166
166
|
summary: A simple command line tool to watch file change and run its matching spec.
|