retest 1.13.2 → 2.0.0.pre1
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/.github/workflows/ci.yml +2 -2
- data/.gitignore +2 -1
- data/Gemfile +1 -1
- data/Gemfile.lock +2 -2
- data/bin/test/bundler-app +2 -1
- data/bin/test/git-ruby +2 -1
- data/bin/test/hanami-app +4 -3
- data/bin/test/rails-app +2 -1
- data/bin/test/reset_helpers +13 -0
- data/bin/test/rspec-rails +2 -1
- data/bin/test/rspec-ruby +2 -1
- data/bin/test/ruby-app +2 -1
- data/bin/test/ruby-bare +2 -1
- data/exe/retest +86 -5
- data/lib/retest/command.rb +7 -7
- data/lib/retest/options.rb +4 -0
- data/lib/retest/program/pausable.rb +17 -0
- data/lib/retest/program.rb +19 -2
- data/lib/retest/prompt.rb +26 -20
- data/lib/retest/runners/runner.rb +11 -5
- data/lib/retest/runners/test_runner.rb +5 -0
- data/lib/retest/runners.rb +4 -2
- data/lib/retest/version.rb +1 -1
- metadata +11 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8aa95d85d566c3271485de99e777fe77a8821e29a06332752ac5e9e4b3dcc7aa
|
4
|
+
data.tar.gz: 812a2acebb89af6544afbbb26b56f81c62c9cd5ef2cf41dd5b39f1a0d5f8c1b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4e43b8ad34890700ff78ab2d66a594e102f23ff8144c3dc55a50b2a850b5ea6cbe8a09707348983e7518387e15759f972cb52275b7e3e94f47b4fd1a52ccf06
|
7
|
+
data.tar.gz: 7e51d2fd6ffcb78ca8739fb703a71161c84eb5ee3f3f4cd1b406bc7c364d92f04d077c720b4c94ead0faa0393df2209051a5abcaac86bed64e5b7ad091a76b7e
|
data/.github/workflows/ci.yml
CHANGED
@@ -11,7 +11,7 @@ on:
|
|
11
11
|
push:
|
12
12
|
branches: [ main ]
|
13
13
|
pull_request:
|
14
|
-
branches: [ main ]
|
14
|
+
branches: [ main, v2.0 ]
|
15
15
|
|
16
16
|
jobs:
|
17
17
|
unit-tests:
|
@@ -28,7 +28,7 @@ jobs:
|
|
28
28
|
- 3.2
|
29
29
|
- 3.3
|
30
30
|
include:
|
31
|
-
- os: macos-
|
31
|
+
- os: macos-13
|
32
32
|
ruby: 2.5
|
33
33
|
name: Ruby ${{ matrix.ruby }} test (${{ matrix.os }})
|
34
34
|
steps:
|
data/.gitignore
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
retest (
|
4
|
+
retest (2.0.0.pre1)
|
5
5
|
listen (~> 3.9)
|
6
6
|
observer (~> 0.1)
|
7
7
|
string-similarity (~> 2.1)
|
@@ -19,7 +19,7 @@ GEM
|
|
19
19
|
observer (0.1.2)
|
20
20
|
rake (13.0.6)
|
21
21
|
rb-fsevent (0.11.2)
|
22
|
-
rb-inotify (0.
|
22
|
+
rb-inotify (0.11.1)
|
23
23
|
ffi (~> 1.0)
|
24
24
|
string-similarity (2.1.0)
|
25
25
|
tty-option (0.3.0)
|
data/bin/test/bundler-app
CHANGED
@@ -2,5 +2,6 @@
|
|
2
2
|
|
3
3
|
bundle install
|
4
4
|
bundle exec rake build
|
5
|
+
cp -R features/support features/bundler-app/retest
|
5
6
|
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} features/bundler-app/retest.gem
|
6
|
-
docker
|
7
|
+
docker compose -f features/bundler-app/docker-compose.yml up --build --exit-code-from retest
|
data/bin/test/git-ruby
CHANGED
@@ -2,5 +2,6 @@
|
|
2
2
|
|
3
3
|
bundle install
|
4
4
|
bundle exec rake build
|
5
|
+
cp -R features/support features/git-ruby/retest
|
5
6
|
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} features/git-ruby/retest.gem
|
6
|
-
docker
|
7
|
+
docker compose -f features/git-ruby/docker-compose.yml up --build --exit-code-from retest
|
data/bin/test/hanami-app
CHANGED
@@ -2,7 +2,8 @@
|
|
2
2
|
|
3
3
|
bundle install
|
4
4
|
bundle exec rake build
|
5
|
+
cp -R features/support features/hanami-app/retest
|
5
6
|
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} features/hanami-app/retest.gem
|
6
|
-
docker
|
7
|
-
docker
|
8
|
-
docker
|
7
|
+
docker compose -f features/hanami-app/docker-compose.yml build
|
8
|
+
docker compose -f features/hanami-app/docker-compose.yml run retest sh bin/test_setup
|
9
|
+
docker compose -f features/hanami-app/docker-compose.yml up --exit-code-from retest
|
data/bin/test/rails-app
CHANGED
@@ -2,5 +2,6 @@
|
|
2
2
|
|
3
3
|
bundle install
|
4
4
|
bundle exec rake build
|
5
|
+
cp -R features/support features/rails-app/retest
|
5
6
|
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} features/rails-app/retest.gem
|
6
|
-
docker
|
7
|
+
docker compose -f features/rails-app/docker-compose.yml up --build --exit-code-from retest
|
data/bin/test/rspec-rails
CHANGED
@@ -2,5 +2,6 @@
|
|
2
2
|
|
3
3
|
bundle install
|
4
4
|
bundle exec rake build
|
5
|
+
cp -R features/support features/rspec-rails/retest
|
5
6
|
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} features/rspec-rails/retest.gem
|
6
|
-
docker
|
7
|
+
docker compose -f features/rspec-rails/docker-compose.yml up --build --exit-code-from retest
|
data/bin/test/rspec-ruby
CHANGED
@@ -2,5 +2,6 @@
|
|
2
2
|
|
3
3
|
bundle install
|
4
4
|
bundle exec rake build
|
5
|
+
cp -R features/support features/rspec-ruby/retest
|
5
6
|
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} features/rspec-ruby/retest.gem
|
6
|
-
docker
|
7
|
+
docker compose -f features/rspec-ruby/docker-compose.yml up --build --exit-code-from retest
|
data/bin/test/ruby-app
CHANGED
@@ -2,5 +2,6 @@
|
|
2
2
|
|
3
3
|
bundle install
|
4
4
|
bundle exec rake build
|
5
|
+
cp -R features/support features/ruby-app/retest
|
5
6
|
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} features/ruby-app/retest.gem
|
6
|
-
docker
|
7
|
+
docker compose -f features/ruby-app/docker-compose.yml up --build --exit-code-from retest
|
data/bin/test/ruby-bare
CHANGED
@@ -2,5 +2,6 @@
|
|
2
2
|
|
3
3
|
bundle install
|
4
4
|
bundle exec rake build
|
5
|
+
cp -R features/support features/ruby-bare/retest
|
5
6
|
ls -t pkg | head -n1 | xargs -I {} mv pkg/{} features/ruby-bare/retest.gem
|
6
|
-
docker
|
7
|
+
docker compose -f features/ruby-bare/docker-compose.yml up --build --exit-code-from retest
|
data/exe/retest
CHANGED
@@ -3,8 +3,15 @@
|
|
3
3
|
require 'retest'
|
4
4
|
|
5
5
|
$stdout.sync = true
|
6
|
+
prompt_rd, prompt_wr = IO.pipe
|
7
|
+
runner_rd, runner_wr = IO.pipe
|
6
8
|
|
7
|
-
Signal.trap(:INT)
|
9
|
+
Signal.trap(:INT) do
|
10
|
+
$stdout.puts "Goodbye"
|
11
|
+
prompt_rd.close
|
12
|
+
prompt_wr.close
|
13
|
+
exit
|
14
|
+
end
|
8
15
|
|
9
16
|
options = Retest::Options.new(ARGV)
|
10
17
|
|
@@ -18,12 +25,17 @@ if options.version?
|
|
18
25
|
return
|
19
26
|
end
|
20
27
|
|
21
|
-
prompt = Retest::Prompt.new
|
28
|
+
prompt = Retest::Prompt.new(input: prompt_rd)
|
22
29
|
repository = Retest::Repository.new(files: Retest::VersionControl.files, prompt: prompt)
|
23
30
|
command = Retest::Command.for_options(options)
|
24
|
-
runner = Retest::Runners.runner_for(command.to_s)
|
31
|
+
runner = Retest::Runners.runner_for(command.to_s, command_stdin: runner_rd)
|
25
32
|
sounds = Retest::Sounds.for(options)
|
26
33
|
|
34
|
+
# All test runner
|
35
|
+
all_test_command = Retest::Command.for_options(options.merge(%w[--all]), stdout: nil)
|
36
|
+
all_test_runner = Retest::Runners.runner_for(all_test_command.to_s)
|
37
|
+
all_test_runner.add_observer(sounds)
|
38
|
+
|
27
39
|
sounds.play(:start)
|
28
40
|
runner.add_observer(sounds)
|
29
41
|
prompt.add_observer(sounds)
|
@@ -35,6 +47,8 @@ program = Retest::Program.new(
|
|
35
47
|
)
|
36
48
|
|
37
49
|
if options.params[:diff]
|
50
|
+
prompt.input = $stdin
|
51
|
+
runner.command_stdin = $stdin
|
38
52
|
program.diff(options.params[:diff])
|
39
53
|
return
|
40
54
|
end
|
@@ -49,7 +63,9 @@ end
|
|
49
63
|
$stdout.puts launching_message
|
50
64
|
Retest.listen(options) do |modified, added, removed|
|
51
65
|
begin
|
52
|
-
program.run(modified, added, removed)
|
66
|
+
program.run(modified, added, removed) do
|
67
|
+
print_interactive_message
|
68
|
+
end
|
53
69
|
rescue => e
|
54
70
|
$stdout.puts "Something went wrong: #{e.message}"
|
55
71
|
end
|
@@ -58,4 +74,69 @@ $stdout.puts "Ready to refactor! You can make file changes now"
|
|
58
74
|
|
59
75
|
# not blocking
|
60
76
|
|
61
|
-
|
77
|
+
def print_interactive_message
|
78
|
+
puts "\nType interactive command and press enter"
|
79
|
+
print(">\s")
|
80
|
+
end
|
81
|
+
|
82
|
+
loop do
|
83
|
+
print_interactive_message
|
84
|
+
|
85
|
+
puts "waiting for input"
|
86
|
+
input = $stdin.gets.to_s.chomp
|
87
|
+
|
88
|
+
puts "input is: #{input.inspect}"
|
89
|
+
|
90
|
+
if prompt.question_asked?
|
91
|
+
prompt_wr.puts input
|
92
|
+
next
|
93
|
+
end
|
94
|
+
|
95
|
+
if all_test_runner.running?
|
96
|
+
$stdin.puts input
|
97
|
+
next
|
98
|
+
end
|
99
|
+
|
100
|
+
if runner.running?
|
101
|
+
runner_wr.puts input
|
102
|
+
next
|
103
|
+
end
|
104
|
+
|
105
|
+
case input
|
106
|
+
when 'p', 'pause'
|
107
|
+
program.pause
|
108
|
+
puts "Program is paused\n"
|
109
|
+
when 'u', 'unpause'
|
110
|
+
program.resume
|
111
|
+
puts "Program has been resumed\n"
|
112
|
+
when 'e', 'exit'
|
113
|
+
Process.kill("INT", 0)
|
114
|
+
when ''
|
115
|
+
begin
|
116
|
+
puts "Running last command\n"
|
117
|
+
old_stdin = runner.command_stdin
|
118
|
+
runner.command_stdin = $stdin
|
119
|
+
runner.run(nil, repository: repository)
|
120
|
+
ensure
|
121
|
+
runner.command_stdin = old_stdin
|
122
|
+
end
|
123
|
+
when 'ra', 'run all'
|
124
|
+
puts "Running all tests\n"
|
125
|
+
all_test_runner.run
|
126
|
+
when /^di?f?f?\s(.*)$/
|
127
|
+
program.diff($1)
|
128
|
+
when 'h', 'help'
|
129
|
+
puts <<~HELP
|
130
|
+
|
131
|
+
* 'h', 'help' # Prints help
|
132
|
+
* 'p', 'pause' # Pauses Retest. Tests aren't run until unpaused.
|
133
|
+
* 'u', 'unpause' # Unpauses Retest
|
134
|
+
* <ENTER> # Runs last changed triggered command
|
135
|
+
* 'ra, 'run all' # Runs all tests
|
136
|
+
* 'd', 'diff' [GIT BRANCH] # Run matching specs that changed from a target branch
|
137
|
+
* 'e', 'exit' # Exits Retest
|
138
|
+
HELP
|
139
|
+
else
|
140
|
+
puts "Unknown interactive command #{input}\n"
|
141
|
+
end
|
142
|
+
end
|
data/lib/retest/command.rb
CHANGED
@@ -7,12 +7,8 @@ module Retest
|
|
7
7
|
class Command
|
8
8
|
extend Forwardable
|
9
9
|
|
10
|
-
def self.for_options(options)
|
11
|
-
new(options: options).command
|
12
|
-
end
|
13
|
-
|
14
|
-
def self.for_setup(setup)
|
15
|
-
new(setup: setup).command
|
10
|
+
def self.for_options(options, stdout: $stdout)
|
11
|
+
new(options: options, stdout: stdout).command
|
16
12
|
end
|
17
13
|
|
18
14
|
def_delegator :setup, :type
|
@@ -51,12 +47,16 @@ module Retest
|
|
51
47
|
end
|
52
48
|
|
53
49
|
def default_command
|
54
|
-
|
50
|
+
log "Setup identified: [#{type.upcase}]. Using command: '#{setup_command}'"
|
55
51
|
setup_command
|
56
52
|
end
|
57
53
|
|
58
54
|
private
|
59
55
|
|
56
|
+
def log(message)
|
57
|
+
@stdout&.puts(message)
|
58
|
+
end
|
59
|
+
|
60
60
|
def rspec_command
|
61
61
|
Rspec.new(all: full_suite?)
|
62
62
|
end
|
data/lib/retest/options.rb
CHANGED
data/lib/retest/program.rb
CHANGED
@@ -1,18 +1,27 @@
|
|
1
|
+
require_relative 'program/pausable'
|
2
|
+
|
1
3
|
module Retest
|
2
4
|
class Program
|
5
|
+
include Pausable
|
6
|
+
|
3
7
|
attr_accessor :runner, :repository, :command
|
4
|
-
def initialize(runner: nil, repository: nil, command: nil)
|
8
|
+
def initialize(runner: nil, repository: nil, command: nil, clear_window: true)
|
5
9
|
@runner = runner
|
6
10
|
@repository = repository
|
7
11
|
@command = command
|
12
|
+
@clear_window = clear_window
|
13
|
+
initialize_pause(false)
|
8
14
|
end
|
9
15
|
|
10
16
|
def run(modified, added, removed)
|
11
17
|
repository.sync(added: added, removed: removed)
|
12
18
|
runner.sync(added: added, removed: removed)
|
13
|
-
system('clear 2>/dev/null') || system('cls 2>/dev/null')
|
14
19
|
|
20
|
+
return if paused?
|
21
|
+
|
22
|
+
clear_terminal
|
15
23
|
runner.run (modified + added).first, repository: repository
|
24
|
+
yield if block_given?
|
16
25
|
end
|
17
26
|
|
18
27
|
def diff(branch)
|
@@ -25,5 +34,13 @@ module Retest
|
|
25
34
|
puts "Running tests..."
|
26
35
|
runner.run_all_tests command.format_batch(*test_files)
|
27
36
|
end
|
37
|
+
|
38
|
+
private
|
39
|
+
|
40
|
+
def clear_terminal
|
41
|
+
return unless @clear_window
|
42
|
+
|
43
|
+
system('clear 2>/dev/null') || system('cls 2>/dev/null')
|
44
|
+
end
|
28
45
|
end
|
29
46
|
end
|
data/lib/retest/prompt.rb
CHANGED
@@ -2,36 +2,34 @@ module Retest
|
|
2
2
|
class Prompt
|
3
3
|
include Observable
|
4
4
|
|
5
|
-
def self.ask_which_test_to_use(path, files)
|
6
|
-
new.ask_which_test_to_use(path, files)
|
7
|
-
end
|
8
|
-
|
9
|
-
def self.puts(*args)
|
10
|
-
new.puts(*args)
|
11
|
-
end
|
12
|
-
|
13
5
|
attr_accessor :input, :output
|
14
6
|
def initialize(input: nil, output: nil)
|
15
7
|
@input = input || $stdin
|
16
8
|
@output = output || $stdout
|
9
|
+
@question_asked = false
|
17
10
|
end
|
18
11
|
|
19
|
-
def
|
20
|
-
|
21
|
-
|
22
|
-
options = options(files)
|
12
|
+
def question_asked?
|
13
|
+
@question_asked
|
14
|
+
end
|
23
15
|
|
24
|
-
|
25
|
-
|
16
|
+
def ask_which_test_to_use(path, files)
|
17
|
+
ask_question do
|
18
|
+
changed
|
19
|
+
notify_observers(:question)
|
20
|
+
options = options(files)
|
26
21
|
|
27
|
-
|
22
|
+
output.puts(<<~QUESTION)
|
23
|
+
We found few tests matching: #{path}
|
28
24
|
|
29
|
-
|
30
|
-
Enter the file number now:
|
31
|
-
QUESTION
|
32
|
-
output.print("> ")
|
25
|
+
#{list_options(options.keys)}
|
33
26
|
|
34
|
-
|
27
|
+
Which file do you want to use?
|
28
|
+
Enter the file number now:
|
29
|
+
QUESTION
|
30
|
+
output.print("> ")
|
31
|
+
options.values[input.gets.to_s.chomp.to_i]
|
32
|
+
end
|
35
33
|
end
|
36
34
|
|
37
35
|
def puts(*args)
|
@@ -42,6 +40,14 @@ module Retest
|
|
42
40
|
output.tap(&:rewind).read
|
43
41
|
end
|
44
42
|
|
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
|
+
|
45
51
|
private
|
46
52
|
|
47
53
|
def options(files, blank_option: 'none')
|
@@ -3,10 +3,11 @@ module Retest
|
|
3
3
|
class Runner
|
4
4
|
include Observable
|
5
5
|
|
6
|
-
attr_accessor :command, :stdout
|
7
|
-
def initialize(command, stdout: $stdout)
|
6
|
+
attr_accessor :command, :stdout, :command_stdin
|
7
|
+
def initialize(command, stdout: $stdout, command_stdin: $stdin)
|
8
8
|
@stdout = stdout
|
9
9
|
@command = command
|
10
|
+
@command_stdin = command_stdin
|
10
11
|
end
|
11
12
|
|
12
13
|
def ==(obj)
|
@@ -18,19 +19,24 @@ module Retest
|
|
18
19
|
end
|
19
20
|
|
20
21
|
def run_all_tests(tests_string)
|
21
|
-
|
22
|
-
system_run command.gsub('<test>', tests_string)
|
22
|
+
raise NotSupportedError, 'cannot run multiple test files against this command'
|
23
23
|
end
|
24
24
|
|
25
25
|
def sync(added:, removed:)
|
26
26
|
end
|
27
27
|
|
28
|
+
def running?
|
29
|
+
@running
|
30
|
+
end
|
31
|
+
|
28
32
|
private
|
29
33
|
|
30
34
|
def system_run(command)
|
31
|
-
|
35
|
+
@running = true
|
36
|
+
result = system(command, in: @command_stdin) ? :tests_pass : :tests_fail
|
32
37
|
changed
|
33
38
|
notify_observers(result)
|
39
|
+
@running = false
|
34
40
|
end
|
35
41
|
|
36
42
|
def log(message)
|
@@ -14,6 +14,11 @@ module Retest
|
|
14
14
|
system_run command.gsub('<test>', cached_test_file)
|
15
15
|
end
|
16
16
|
|
17
|
+
def run_all_tests(tests_string)
|
18
|
+
log("Test File Selected: #{tests_string}")
|
19
|
+
system_run command.gsub('<test>', tests_string)
|
20
|
+
end
|
21
|
+
|
17
22
|
def sync(added:, removed:)
|
18
23
|
purge_test_file(removed)
|
19
24
|
end
|
data/lib/retest/runners.rb
CHANGED
@@ -5,9 +5,11 @@ require_relative 'runners/variable_runner'
|
|
5
5
|
|
6
6
|
module Retest
|
7
7
|
module Runners
|
8
|
+
class NotSupportedError < StandardError; end
|
9
|
+
|
8
10
|
module_function
|
9
11
|
|
10
|
-
def runner_for(command)
|
12
|
+
def runner_for(command, **opts)
|
11
13
|
for_test = command.include?('<test>')
|
12
14
|
for_change = command.include?('<changed>')
|
13
15
|
|
@@ -15,7 +17,7 @@ module Retest
|
|
15
17
|
elsif for_test then TestRunner
|
16
18
|
elsif for_change then ChangeRunner
|
17
19
|
else Runner
|
18
|
-
end.new command
|
20
|
+
end.new command, **opts
|
19
21
|
end
|
20
22
|
end
|
21
23
|
end
|
data/lib/retest/version.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:
|
4
|
+
version: 2.0.0.pre1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexandre Barret
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: string-similarity
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0.1'
|
69
|
-
description:
|
69
|
+
description:
|
70
70
|
email:
|
71
71
|
- alex@abletech.nz
|
72
72
|
executables:
|
@@ -90,6 +90,7 @@ files:
|
|
90
90
|
- bin/test/git-ruby
|
91
91
|
- bin/test/hanami-app
|
92
92
|
- bin/test/rails-app
|
93
|
+
- bin/test/reset_helpers
|
93
94
|
- bin/test/rspec-rails
|
94
95
|
- bin/test/rspec-ruby
|
95
96
|
- bin/test/ruby-app
|
@@ -106,6 +107,7 @@ files:
|
|
106
107
|
- lib/retest/matching_options/path.rb
|
107
108
|
- lib/retest/options.rb
|
108
109
|
- lib/retest/program.rb
|
110
|
+
- lib/retest/program/pausable.rb
|
109
111
|
- lib/retest/prompt.rb
|
110
112
|
- lib/retest/repository.rb
|
111
113
|
- lib/retest/runners.rb
|
@@ -127,7 +129,7 @@ licenses:
|
|
127
129
|
metadata:
|
128
130
|
homepage_uri: https://github.com/AlexB52/retest
|
129
131
|
source_code_uri: https://github.com/AlexB52/retest
|
130
|
-
post_install_message:
|
132
|
+
post_install_message:
|
131
133
|
rdoc_options: []
|
132
134
|
require_paths:
|
133
135
|
- lib
|
@@ -138,12 +140,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
138
140
|
version: 2.5.0
|
139
141
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
140
142
|
requirements:
|
141
|
-
- - "
|
143
|
+
- - ">"
|
142
144
|
- !ruby/object:Gem::Version
|
143
|
-
version:
|
145
|
+
version: 1.3.1
|
144
146
|
requirements: []
|
145
|
-
rubygems_version: 3.
|
146
|
-
signing_key:
|
147
|
+
rubygems_version: 3.1.6
|
148
|
+
signing_key:
|
147
149
|
specification_version: 4
|
148
150
|
summary: A simple command line tool to watch file change and run its matching spec.
|
149
151
|
test_files: []
|