m 1.6.1 → 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby-ci.yml +3 -3
- data/.gitignore +1 -0
- data/.standard.yml +1 -0
- data/Gemfile +4 -6
- data/README.md +3 -25
- data/Rakefile +34 -82
- data/bin/m +2 -2
- data/gemfiles/minitest4.gemfile +2 -4
- data/gemfiles/minitest5.gemfile +2 -4
- data/gemfiles/test_unit_gem.gemfile +2 -4
- data/lib/error_tests/error_test.rb +1 -1
- data/lib/m/executor.rb +19 -23
- data/lib/m/frameworks.rb +20 -16
- data/lib/m/parser.rb +30 -31
- data/lib/m/runner.rb +3 -3
- data/lib/m/runners/base.rb +4 -4
- data/lib/m/runners/minitest_4.rb +1 -1
- data/lib/m/runners/minitest_5.rb +3 -5
- data/lib/m/runners/test_unit.rb +6 -6
- data/lib/m/runners/unsupported_framework.rb +2 -2
- data/lib/m/test_collection.rb +5 -5
- data/lib/m/test_method.rb +5 -5
- data/lib/m/testable.rb +2 -2
- data/lib/m/version.rb +1 -1
- data/lib/m.rb +4 -4
- data/m.gemspec +13 -14
- data/test/Rakefile +2 -2
- data/test/active_support_test.rb +17 -17
- data/test/allocations.rb +11 -13
- data/test/bench.rb +9 -9
- data/test/empty_test.rb +2 -2
- data/test/everything_test.rb +7 -7
- data/test/examples/active_support_example_test.rb +2 -5
- data/test/examples/active_support_unescaped_example_test.rb +2 -5
- data/test/examples/empty_example_test.rb +1 -1
- data/test/examples/minitest_4_example_test.rb +1 -1
- data/test/examples/minitest_5_example_test.rb +1 -1
- data/test/examples/minitest_example_test.rb +2 -2
- data/test/examples/multiple_example_test.rb +3 -3
- data/test/examples/subdir/a_test.rb +1 -1
- data/test/examples/subdir/another_subdir/d_test.rb +1 -1
- data/test/examples/subdir/another_subdir/yet_another_subdir/e_test.rb +1 -1
- data/test/examples/subdir/b_test.rb +1 -1
- data/test/examples/subdir/c_test.rb +1 -1
- data/test/examples/subdir_with_failures/a_test.rb +1 -1
- data/test/examples/test_unit_example_test.rb +2 -2
- data/test/exit_codes_test.rb +6 -6
- data/test/minitest_4_test.rb +7 -7
- data/test/minitest_5_test.rb +8 -8
- data/test/multiple_test.rb +4 -4
- data/test/options_test.rb +14 -14
- data/test/test_helper.rb +15 -17
- data/test/test_unit_test.rb +9 -9
- metadata +11 -69
- data/.travis.yml +0 -19
- data/Appraisals +0 -11
- data/Gemfile.lock +0 -74
- data/gemfiles/minitest4.gemfile.lock +0 -73
- data/gemfiles/minitest5.gemfile.lock +0 -73
- data/gemfiles/test_unit_gem.gemfile.lock +0 -76
data/test/multiple_test.rb
CHANGED
@@ -1,18 +1,18 @@
|
|
1
|
-
require
|
1
|
+
require "test_helper"
|
2
2
|
|
3
3
|
class MultipleTest < MTest
|
4
4
|
def test_run_simple_test_by_line_number
|
5
|
-
output = m
|
5
|
+
output = m "examples/multiple_example_test.rb:11"
|
6
6
|
assert_output(/1 (runs|tests), 1 assertions/, output)
|
7
7
|
end
|
8
8
|
|
9
9
|
def test_runs_entire_test_without_line_number
|
10
|
-
output = m
|
10
|
+
output = m "examples/multiple_example_test.rb"
|
11
11
|
assert_output(/4 (runs|tests)/, output)
|
12
12
|
end
|
13
13
|
|
14
14
|
def test_runs_all_tests_on_given_line_number
|
15
|
-
output = m
|
15
|
+
output = m "examples/multiple_example_test.rb:6"
|
16
16
|
assert_output(/3 (runs|tests)/, output)
|
17
17
|
end
|
18
18
|
end
|
data/test/options_test.rb
CHANGED
@@ -1,65 +1,65 @@
|
|
1
|
-
require
|
1
|
+
require "test_helper"
|
2
2
|
|
3
3
|
class OptionsTest < MTest
|
4
4
|
def test_short_help_option
|
5
|
-
output = m
|
5
|
+
output = m "-h"
|
6
6
|
assert_output(/^Usage: m \[OPTIONS\] \[FILES\]/, output)
|
7
7
|
end
|
8
8
|
|
9
9
|
def test_long_help_option
|
10
|
-
output = m
|
10
|
+
output = m "--help"
|
11
11
|
assert_output(/^Usage: m \[OPTIONS\] \[FILES\]/, output)
|
12
12
|
end
|
13
13
|
|
14
14
|
def test_verbose_option
|
15
|
-
output = m
|
16
|
-
assert_output(/^m #{M::VERSION}
|
15
|
+
output = m "--version"
|
16
|
+
assert_output(/^m #{M::VERSION}/o, output)
|
17
17
|
end
|
18
18
|
|
19
19
|
def test_short_line_option
|
20
|
-
output = m
|
20
|
+
output = m "-l20 examples/minitest_example_test.rb"
|
21
21
|
assert_output(/1 (runs|tests), 1 assertions/, output)
|
22
22
|
end
|
23
23
|
|
24
24
|
def test_long_line_option
|
25
|
-
output = m
|
25
|
+
output = m "--line 20 examples/minitest_example_test.rb"
|
26
26
|
assert_output(/1 (runs|tests), 1 assertions/, output)
|
27
27
|
end
|
28
28
|
|
29
29
|
def test_line_option_has_precedence_over_colon_format
|
30
|
-
output = m
|
30
|
+
output = m "--line 20 examples/minitest_example_test.rb:2"
|
31
31
|
assert_output(/1 (runs|tests), 1 assertions/, output)
|
32
32
|
end
|
33
33
|
|
34
34
|
def test_recursive_option
|
35
|
-
output = m
|
35
|
+
output = m "-r examples/subdir"
|
36
36
|
assert_output(/5 (runs|tests)/, output)
|
37
37
|
end
|
38
38
|
|
39
39
|
def test_recursive_option_without_directory_arg_fails
|
40
|
-
output = m
|
40
|
+
output = m "-r"
|
41
41
|
assert_match(/OptionParser::MissingArgument/, output)
|
42
42
|
end
|
43
43
|
|
44
44
|
def test_passthrough_options
|
45
|
-
output = m
|
45
|
+
output = m "-- --verbose"
|
46
46
|
assert_output(/0 errors/, output)
|
47
47
|
end
|
48
48
|
|
49
49
|
def test_passthrough_options_name_with_file
|
50
|
-
output = m
|
50
|
+
output = m "examples/minitest_example_test.rb -- --name /test_that_it_will_not_blend/"
|
51
51
|
assert_output(/1 (runs|tests)/, output)
|
52
52
|
assert_output(/0 failures/, output)
|
53
53
|
assert_output(/0 errors/, output)
|
54
54
|
end
|
55
55
|
|
56
56
|
def test_passthrough_options_with_file
|
57
|
-
output = m
|
57
|
+
output = m "examples/minitest_example_test.rb -- --verbose"
|
58
58
|
assert_output(/3 (runs|tests), 9 assertions/, output)
|
59
59
|
end
|
60
60
|
|
61
61
|
def test_passthrough_options_with_file_and_other_options
|
62
|
-
output = m
|
62
|
+
output = m "--line 20 examples/minitest_example_test.rb -- --verbose"
|
63
63
|
assert_output(/1 (runs|tests), 1 assertions/, output)
|
64
64
|
end
|
65
65
|
end
|
data/test/test_helper.rb
CHANGED
@@ -1,47 +1,45 @@
|
|
1
1
|
begin
|
2
|
-
require
|
2
|
+
require "coveralls"
|
3
3
|
Coveralls.wear_merged!
|
4
4
|
rescue LoadError
|
5
5
|
warn "gem 'coveralls' not available, proceeding without it"
|
6
6
|
end
|
7
7
|
|
8
8
|
module Testable
|
9
|
-
def m
|
10
|
-
Dir.chdir
|
9
|
+
def m arguments
|
10
|
+
Dir.chdir "test" do
|
11
11
|
`ruby -I../lib -I. ../bin/m #{arguments} 2>&1`.strip
|
12
12
|
end
|
13
13
|
end
|
14
14
|
|
15
|
-
def assert_output
|
15
|
+
def assert_output regexp, output
|
16
16
|
assert $?.success?, "Execution failed, output:\n\n#{output}"
|
17
17
|
assert_match regexp, output
|
18
18
|
end
|
19
19
|
|
20
|
-
def assert_output_for_failed_execution
|
20
|
+
def assert_output_for_failed_execution regexp, output
|
21
21
|
refute $?.success?, "Execution did not fail, but it should"
|
22
22
|
assert_match regexp, output
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
26
|
-
require
|
26
|
+
require "m"
|
27
27
|
|
28
|
-
def try_loading
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
return false
|
33
|
-
end
|
28
|
+
def try_loading gem
|
29
|
+
require gem
|
30
|
+
rescue LoadError
|
31
|
+
false
|
34
32
|
end
|
35
33
|
|
36
|
-
try_loading(
|
37
|
-
try_loading(
|
38
|
-
try_loading(
|
34
|
+
try_loading("test-unit") ||
|
35
|
+
try_loading("minitest/autorun") ||
|
36
|
+
try_loading("test/unit")
|
39
37
|
|
40
38
|
if M::Frameworks.test_unit?
|
41
39
|
begin
|
42
|
-
require
|
40
|
+
require "test-unit"
|
43
41
|
rescue LoadError
|
44
|
-
require
|
42
|
+
require "active_support/test_case"
|
45
43
|
end
|
46
44
|
|
47
45
|
class MTest < Test::Unit::TestCase
|
data/test/test_unit_test.rb
CHANGED
@@ -1,39 +1,39 @@
|
|
1
|
-
require
|
1
|
+
require "test_helper"
|
2
2
|
|
3
3
|
if M::Frameworks.test_unit?
|
4
4
|
class TestUnitTest < MTest
|
5
5
|
def test_run_simple_test_by_line_number
|
6
|
-
output = m
|
6
|
+
output = m "examples/test_unit_example_test.rb:9"
|
7
7
|
assert_output(/1 tests, 1 assertions/, output)
|
8
8
|
end
|
9
9
|
|
10
10
|
def test_runs_entire_test_without_line_number
|
11
|
-
output = m
|
11
|
+
output = m "examples/test_unit_example_test.rb"
|
12
12
|
assert_output(/2 tests/, output)
|
13
13
|
end
|
14
14
|
|
15
15
|
def test_run_inside_of_test
|
16
|
-
output = m
|
16
|
+
output = m "examples/test_unit_example_test.rb:10"
|
17
17
|
assert_output(/1 tests, 1 assertions/, output)
|
18
18
|
end
|
19
19
|
|
20
20
|
def test_run_on_end_of_test
|
21
|
-
output = m
|
21
|
+
output = m "examples/test_unit_example_test.rb:11"
|
22
22
|
assert_output(/1 tests, 1 assertions/, output)
|
23
23
|
end
|
24
24
|
|
25
25
|
def test_run_inside_big_test
|
26
|
-
output = m
|
26
|
+
output = m "examples/test_unit_example_test.rb:15"
|
27
27
|
assert_output(/1 tests, 3 assertions/, output)
|
28
28
|
end
|
29
29
|
|
30
30
|
def test_run_on_blank_line
|
31
|
-
output = m
|
31
|
+
output = m "examples/test_unit_example_test.rb:8"
|
32
32
|
|
33
33
|
assert !$?.success?
|
34
34
|
assert_match(/No tests found on line 8. Valid tests to run:/, output)
|
35
|
-
assert_match
|
36
|
-
assert_match
|
35
|
+
assert_match %r{ test_apple: m examples/test_unit_example_test\.rb:9}, output
|
36
|
+
assert_match %r{test_banana: m examples/test_unit_example_test\.rb:13}, output
|
37
37
|
end
|
38
38
|
end
|
39
39
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: m
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Quaranto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: method_source
|
@@ -53,35 +53,7 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rocco
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - ">="
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: appraisal
|
56
|
+
name: standard
|
85
57
|
requirement: !ruby/object:Gem::Requirement
|
86
58
|
requirements:
|
87
59
|
- - ">="
|
@@ -104,10 +76,8 @@ extra_rdoc_files: []
|
|
104
76
|
files:
|
105
77
|
- ".github/workflows/ruby-ci.yml"
|
106
78
|
- ".gitignore"
|
107
|
-
- ".
|
108
|
-
- Appraisals
|
79
|
+
- ".standard.yml"
|
109
80
|
- Gemfile
|
110
|
-
- Gemfile.lock
|
111
81
|
- LICENSE
|
112
82
|
- README.md
|
113
83
|
- Rakefile
|
@@ -116,11 +86,8 @@ files:
|
|
116
86
|
- benchmarks/20150927-benchmark.log
|
117
87
|
- bin/m
|
118
88
|
- gemfiles/minitest4.gemfile
|
119
|
-
- gemfiles/minitest4.gemfile.lock
|
120
89
|
- gemfiles/minitest5.gemfile
|
121
|
-
- gemfiles/minitest5.gemfile.lock
|
122
90
|
- gemfiles/test_unit_gem.gemfile
|
123
|
-
- gemfiles/test_unit_gem.gemfile.lock
|
124
91
|
- lib/error_tests/error_test.rb
|
125
92
|
- lib/m.rb
|
126
93
|
- lib/m/executor.rb
|
@@ -166,8 +133,10 @@ files:
|
|
166
133
|
- test/test_helper.rb
|
167
134
|
- test/test_unit_test.rb
|
168
135
|
homepage: https://github.com/qrush/m
|
169
|
-
licenses:
|
170
|
-
|
136
|
+
licenses:
|
137
|
+
- MIT
|
138
|
+
metadata:
|
139
|
+
rubygems_mfa_required: 'true'
|
171
140
|
post_install_message:
|
172
141
|
rdoc_options: []
|
173
142
|
require_paths:
|
@@ -176,42 +145,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
176
145
|
requirements:
|
177
146
|
- - ">="
|
178
147
|
- !ruby/object:Gem::Version
|
179
|
-
version: '
|
148
|
+
version: '2.7'
|
180
149
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
181
150
|
requirements:
|
182
151
|
- - ">="
|
183
152
|
- !ruby/object:Gem::Version
|
184
153
|
version: '0'
|
185
154
|
requirements: []
|
186
|
-
rubygems_version: 3.
|
155
|
+
rubygems_version: 3.4.6
|
187
156
|
signing_key:
|
188
157
|
specification_version: 4
|
189
158
|
summary: Run test/unit tests by line number. Metal!
|
190
|
-
test_files:
|
191
|
-
- test/Rakefile
|
192
|
-
- test/active_support_test.rb
|
193
|
-
- test/allocations.rb
|
194
|
-
- test/bench.rb
|
195
|
-
- test/empty_test.rb
|
196
|
-
- test/everything_test.rb
|
197
|
-
- test/examples/active_support_example_test.rb
|
198
|
-
- test/examples/active_support_unescaped_example_test.rb
|
199
|
-
- test/examples/empty_example_test.rb
|
200
|
-
- test/examples/minitest_4_example_test.rb
|
201
|
-
- test/examples/minitest_5_example_test.rb
|
202
|
-
- test/examples/minitest_example_test.rb
|
203
|
-
- test/examples/multiple_example_test.rb
|
204
|
-
- test/examples/subdir/a_test.rb
|
205
|
-
- test/examples/subdir/another_subdir/d_test.rb
|
206
|
-
- test/examples/subdir/another_subdir/yet_another_subdir/e_test.rb
|
207
|
-
- test/examples/subdir/b_test.rb
|
208
|
-
- test/examples/subdir/c_test.rb
|
209
|
-
- test/examples/subdir_with_failures/a_test.rb
|
210
|
-
- test/examples/test_unit_example_test.rb
|
211
|
-
- test/exit_codes_test.rb
|
212
|
-
- test/minitest_4_test.rb
|
213
|
-
- test/minitest_5_test.rb
|
214
|
-
- test/multiple_test.rb
|
215
|
-
- test/options_test.rb
|
216
|
-
- test/test_helper.rb
|
217
|
-
- test/test_unit_test.rb
|
159
|
+
test_files: []
|
data/.travis.yml
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.4
|
4
|
-
- 2.5
|
5
|
-
- 2.6
|
6
|
-
- 2.7
|
7
|
-
- 3.0
|
8
|
-
- jruby-9.2
|
9
|
-
before_install:
|
10
|
-
- yes | gem update --system --force
|
11
|
-
- gem install bundler
|
12
|
-
gemfile:
|
13
|
-
- gemfiles/minitest4.gemfile
|
14
|
-
- gemfiles/minitest5.gemfile
|
15
|
-
- gemfiles/test_unit_gem.gemfile
|
16
|
-
install:
|
17
|
-
- bundle install
|
18
|
-
script:
|
19
|
-
- bundle exec rake test
|
data/Appraisals
DELETED
data/Gemfile.lock
DELETED
@@ -1,74 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
m (1.6.1)
|
5
|
-
method_source (>= 0.6.7)
|
6
|
-
rake (>= 0.9.2.2)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activesupport (6.1.4.1)
|
12
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (>= 1.6, < 2)
|
14
|
-
minitest (>= 5.1)
|
15
|
-
tzinfo (~> 2.0)
|
16
|
-
zeitwerk (~> 2.3)
|
17
|
-
allocation_stats (0.1.5)
|
18
|
-
appraisal (2.4.1)
|
19
|
-
bundler
|
20
|
-
rake
|
21
|
-
thor (>= 0.14.0)
|
22
|
-
benchmark-ips (2.9.1)
|
23
|
-
concurrent-ruby (1.1.9)
|
24
|
-
coveralls (0.8.23)
|
25
|
-
json (>= 1.8, < 3)
|
26
|
-
simplecov (~> 0.16.1)
|
27
|
-
term-ansicolor (~> 1.3)
|
28
|
-
thor (>= 0.19.4, < 2.0)
|
29
|
-
tins (~> 1.6)
|
30
|
-
docile (1.4.0)
|
31
|
-
i18n (1.8.10)
|
32
|
-
concurrent-ruby (~> 1.0)
|
33
|
-
json (2.5.1)
|
34
|
-
json (2.5.1-java)
|
35
|
-
method_source (1.0.0)
|
36
|
-
minitest (5.14.4)
|
37
|
-
mustache (1.1.1)
|
38
|
-
rake (13.0.6)
|
39
|
-
rdiscount (2.2.0.2)
|
40
|
-
redcarpet (3.5.1)
|
41
|
-
rocco (0.8.2)
|
42
|
-
mustache
|
43
|
-
redcarpet
|
44
|
-
simplecov (0.16.1)
|
45
|
-
docile (~> 1.1)
|
46
|
-
json (>= 1.8, < 3)
|
47
|
-
simplecov-html (~> 0.10.0)
|
48
|
-
simplecov-html (0.10.2)
|
49
|
-
sync (0.5.0)
|
50
|
-
term-ansicolor (1.7.1)
|
51
|
-
tins (~> 1.0)
|
52
|
-
thor (1.1.0)
|
53
|
-
tins (1.29.1)
|
54
|
-
sync
|
55
|
-
tzinfo (2.0.4)
|
56
|
-
concurrent-ruby (~> 1.0)
|
57
|
-
zeitwerk (2.4.2)
|
58
|
-
|
59
|
-
PLATFORMS
|
60
|
-
java
|
61
|
-
ruby
|
62
|
-
|
63
|
-
DEPENDENCIES
|
64
|
-
activesupport
|
65
|
-
allocation_stats
|
66
|
-
appraisal
|
67
|
-
benchmark-ips
|
68
|
-
coveralls
|
69
|
-
m!
|
70
|
-
rdiscount
|
71
|
-
rocco
|
72
|
-
|
73
|
-
BUNDLED WITH
|
74
|
-
2.3.26
|
@@ -1,73 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
m (1.6.0)
|
5
|
-
method_source (>= 0.6.7)
|
6
|
-
rake (>= 0.9.2.2)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activesupport (4.0.13)
|
12
|
-
i18n (~> 0.6, >= 0.6.9)
|
13
|
-
minitest (~> 4.2)
|
14
|
-
multi_json (~> 1.3)
|
15
|
-
thread_safe (~> 0.1)
|
16
|
-
tzinfo (~> 0.3.37)
|
17
|
-
allocation_stats (0.1.5)
|
18
|
-
appraisal (2.4.1)
|
19
|
-
bundler
|
20
|
-
rake
|
21
|
-
thor (>= 0.14.0)
|
22
|
-
benchmark-ips (2.9.1)
|
23
|
-
concurrent-ruby (1.1.9)
|
24
|
-
coveralls (0.8.23)
|
25
|
-
json (>= 1.8, < 3)
|
26
|
-
simplecov (~> 0.16.1)
|
27
|
-
term-ansicolor (~> 1.3)
|
28
|
-
thor (>= 0.19.4, < 2.0)
|
29
|
-
tins (~> 1.6)
|
30
|
-
docile (1.4.0)
|
31
|
-
i18n (0.9.5)
|
32
|
-
concurrent-ruby (~> 1.0)
|
33
|
-
json (2.5.1)
|
34
|
-
method_source (1.0.0)
|
35
|
-
minitest (4.7.5)
|
36
|
-
multi_json (1.15.0)
|
37
|
-
mustache (1.1.1)
|
38
|
-
rake (13.0.6)
|
39
|
-
rdiscount (2.2.0.2)
|
40
|
-
redcarpet (3.5.1)
|
41
|
-
rocco (0.8.2)
|
42
|
-
mustache
|
43
|
-
redcarpet
|
44
|
-
simplecov (0.16.1)
|
45
|
-
docile (~> 1.1)
|
46
|
-
json (>= 1.8, < 3)
|
47
|
-
simplecov-html (~> 0.10.0)
|
48
|
-
simplecov-html (0.10.2)
|
49
|
-
sync (0.5.0)
|
50
|
-
term-ansicolor (1.7.1)
|
51
|
-
tins (~> 1.0)
|
52
|
-
thor (1.1.0)
|
53
|
-
thread_safe (0.3.6)
|
54
|
-
tins (1.29.1)
|
55
|
-
sync
|
56
|
-
tzinfo (0.3.60)
|
57
|
-
|
58
|
-
PLATFORMS
|
59
|
-
ruby
|
60
|
-
|
61
|
-
DEPENDENCIES
|
62
|
-
activesupport
|
63
|
-
allocation_stats
|
64
|
-
appraisal
|
65
|
-
benchmark-ips
|
66
|
-
coveralls
|
67
|
-
m!
|
68
|
-
minitest (~> 4)
|
69
|
-
rdiscount
|
70
|
-
rocco
|
71
|
-
|
72
|
-
BUNDLED WITH
|
73
|
-
2.2.26
|
@@ -1,73 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
m (1.6.0)
|
5
|
-
method_source (>= 0.6.7)
|
6
|
-
rake (>= 0.9.2.2)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activesupport (6.1.4.1)
|
12
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (>= 1.6, < 2)
|
14
|
-
minitest (>= 5.1)
|
15
|
-
tzinfo (~> 2.0)
|
16
|
-
zeitwerk (~> 2.3)
|
17
|
-
allocation_stats (0.1.5)
|
18
|
-
appraisal (2.4.1)
|
19
|
-
bundler
|
20
|
-
rake
|
21
|
-
thor (>= 0.14.0)
|
22
|
-
benchmark-ips (2.9.1)
|
23
|
-
concurrent-ruby (1.1.9)
|
24
|
-
coveralls (0.8.23)
|
25
|
-
json (>= 1.8, < 3)
|
26
|
-
simplecov (~> 0.16.1)
|
27
|
-
term-ansicolor (~> 1.3)
|
28
|
-
thor (>= 0.19.4, < 2.0)
|
29
|
-
tins (~> 1.6)
|
30
|
-
docile (1.4.0)
|
31
|
-
i18n (1.8.10)
|
32
|
-
concurrent-ruby (~> 1.0)
|
33
|
-
json (2.5.1)
|
34
|
-
method_source (1.0.0)
|
35
|
-
minitest (5.14.4)
|
36
|
-
mustache (1.1.1)
|
37
|
-
rake (13.0.6)
|
38
|
-
rdiscount (2.2.0.2)
|
39
|
-
redcarpet (3.5.1)
|
40
|
-
rocco (0.8.2)
|
41
|
-
mustache
|
42
|
-
redcarpet
|
43
|
-
simplecov (0.16.1)
|
44
|
-
docile (~> 1.1)
|
45
|
-
json (>= 1.8, < 3)
|
46
|
-
simplecov-html (~> 0.10.0)
|
47
|
-
simplecov-html (0.10.2)
|
48
|
-
sync (0.5.0)
|
49
|
-
term-ansicolor (1.7.1)
|
50
|
-
tins (~> 1.0)
|
51
|
-
thor (1.1.0)
|
52
|
-
tins (1.29.1)
|
53
|
-
sync
|
54
|
-
tzinfo (2.0.4)
|
55
|
-
concurrent-ruby (~> 1.0)
|
56
|
-
zeitwerk (2.4.2)
|
57
|
-
|
58
|
-
PLATFORMS
|
59
|
-
ruby
|
60
|
-
|
61
|
-
DEPENDENCIES
|
62
|
-
activesupport
|
63
|
-
allocation_stats
|
64
|
-
appraisal
|
65
|
-
benchmark-ips
|
66
|
-
coveralls
|
67
|
-
m!
|
68
|
-
minitest (~> 5)
|
69
|
-
rdiscount
|
70
|
-
rocco
|
71
|
-
|
72
|
-
BUNDLED WITH
|
73
|
-
2.2.26
|
@@ -1,76 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
m (1.6.0)
|
5
|
-
method_source (>= 0.6.7)
|
6
|
-
rake (>= 0.9.2.2)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activesupport (6.1.4.1)
|
12
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (>= 1.6, < 2)
|
14
|
-
minitest (>= 5.1)
|
15
|
-
tzinfo (~> 2.0)
|
16
|
-
zeitwerk (~> 2.3)
|
17
|
-
allocation_stats (0.1.5)
|
18
|
-
appraisal (2.4.1)
|
19
|
-
bundler
|
20
|
-
rake
|
21
|
-
thor (>= 0.14.0)
|
22
|
-
benchmark-ips (2.9.1)
|
23
|
-
concurrent-ruby (1.1.9)
|
24
|
-
coveralls (0.8.23)
|
25
|
-
json (>= 1.8, < 3)
|
26
|
-
simplecov (~> 0.16.1)
|
27
|
-
term-ansicolor (~> 1.3)
|
28
|
-
thor (>= 0.19.4, < 2.0)
|
29
|
-
tins (~> 1.6)
|
30
|
-
docile (1.4.0)
|
31
|
-
i18n (1.8.10)
|
32
|
-
concurrent-ruby (~> 1.0)
|
33
|
-
json (2.5.1)
|
34
|
-
method_source (1.0.0)
|
35
|
-
minitest (5.14.4)
|
36
|
-
mustache (1.1.1)
|
37
|
-
power_assert (2.0.1)
|
38
|
-
rake (13.0.6)
|
39
|
-
rdiscount (2.2.0.2)
|
40
|
-
redcarpet (3.5.1)
|
41
|
-
rocco (0.8.2)
|
42
|
-
mustache
|
43
|
-
redcarpet
|
44
|
-
simplecov (0.16.1)
|
45
|
-
docile (~> 1.1)
|
46
|
-
json (>= 1.8, < 3)
|
47
|
-
simplecov-html (~> 0.10.0)
|
48
|
-
simplecov-html (0.10.2)
|
49
|
-
sync (0.5.0)
|
50
|
-
term-ansicolor (1.7.1)
|
51
|
-
tins (~> 1.0)
|
52
|
-
test-unit (3.4.4)
|
53
|
-
power_assert
|
54
|
-
thor (1.1.0)
|
55
|
-
tins (1.29.1)
|
56
|
-
sync
|
57
|
-
tzinfo (2.0.4)
|
58
|
-
concurrent-ruby (~> 1.0)
|
59
|
-
zeitwerk (2.4.2)
|
60
|
-
|
61
|
-
PLATFORMS
|
62
|
-
ruby
|
63
|
-
|
64
|
-
DEPENDENCIES
|
65
|
-
activesupport
|
66
|
-
allocation_stats
|
67
|
-
appraisal
|
68
|
-
benchmark-ips
|
69
|
-
coveralls
|
70
|
-
m!
|
71
|
-
rdiscount
|
72
|
-
rocco
|
73
|
-
test-unit
|
74
|
-
|
75
|
-
BUNDLED WITH
|
76
|
-
2.2.26
|