Skip to content

Commit 592a140

Browse files
test 7
1 parent 2c7f309 commit 592a140

2 files changed

Lines changed: 119 additions & 0 deletions

File tree

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ gem 'test-unit', '3.7.7'
1717
gem 'timecop', '0.9.10'
1818
gem 'yard', '0.9.38'
1919

20+
# We need an old 'erb' version while still supporting Ruby 3.1
21+
gem 'erb', '~> 5.1.3'
22+
2023
group :benchmark do
2124
gem 'benchmark'
2225
gem 'benchmark-ips'

Gemfile.lock

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
PATH
2+
remote: .
3+
specs:
4+
faker (3.5.3)
5+
i18n (>= 1.8.11, < 2)
6+
7+
GEM
8+
remote: https://rubygems.org/
9+
specs:
10+
ast (2.4.3)
11+
benchmark (0.5.0)
12+
benchmark-ips (2.14.0)
13+
coderay (1.1.3)
14+
concurrent-ruby (1.3.6)
15+
date (3.5.1)
16+
docile (1.4.1)
17+
erb (5.1.3)
18+
i18n (1.14.8)
19+
concurrent-ruby (~> 1.0)
20+
io-console (0.8.2)
21+
irb (1.16.0)
22+
pp (>= 0.6.0)
23+
rdoc (>= 4.0.0)
24+
reline (>= 0.4.2)
25+
json (2.18.0)
26+
language_server-protocol (3.17.0.5)
27+
lint_roller (1.1.0)
28+
method_source (1.1.0)
29+
minitest (5.27.0)
30+
parallel (1.27.0)
31+
parser (3.3.10.0)
32+
ast (~> 2.4.1)
33+
racc
34+
power_assert (3.0.1)
35+
pp (0.6.3)
36+
prettyprint
37+
prettyprint (0.2.0)
38+
prism (1.7.0)
39+
pry (0.16.0)
40+
coderay (~> 1.1)
41+
method_source (~> 1.0)
42+
reline (>= 0.6.0)
43+
psych (5.3.1)
44+
date
45+
stringio
46+
racc (1.8.1)
47+
rainbow (3.1.1)
48+
rake (13.3.1)
49+
rdoc (7.0.3)
50+
erb
51+
psych (>= 4.0.0)
52+
tsort
53+
regexp_parser (2.11.3)
54+
reline (0.6.3)
55+
io-console (~> 0.5)
56+
rubocop (1.82.1)
57+
json (~> 2.3)
58+
language_server-protocol (~> 3.17.0.2)
59+
lint_roller (~> 1.1.0)
60+
parallel (~> 1.10)
61+
parser (>= 3.3.0.2)
62+
rainbow (>= 2.2.2, < 4.0)
63+
regexp_parser (>= 2.9.3, < 3.0)
64+
rubocop-ast (>= 1.48.0, < 2.0)
65+
ruby-progressbar (~> 1.7)
66+
unicode-display_width (>= 2.4.0, < 4.0)
67+
rubocop-ast (1.49.0)
68+
parser (>= 3.3.7.2)
69+
prism (~> 1.7)
70+
rubocop-minitest (0.38.2)
71+
lint_roller (~> 1.1)
72+
rubocop (>= 1.75.0, < 2.0)
73+
rubocop-ast (>= 1.38.0, < 2.0)
74+
rubocop-rake (0.7.1)
75+
lint_roller (~> 1.1)
76+
rubocop (>= 1.72.1)
77+
ruby-progressbar (1.13.0)
78+
simplecov (0.22.0)
79+
docile (~> 1.1)
80+
simplecov-html (~> 0.11)
81+
simplecov_json_formatter (~> 0.1)
82+
simplecov-html (0.13.2)
83+
simplecov_json_formatter (0.1.4)
84+
stringio (3.2.0)
85+
test-unit (3.7.7)
86+
power_assert
87+
timecop (0.9.10)
88+
tsort (0.2.0)
89+
unicode-display_width (3.2.0)
90+
unicode-emoji (~> 4.1)
91+
unicode-emoji (4.2.0)
92+
yard (0.9.38)
93+
94+
PLATFORMS
95+
arm64-darwin
96+
x86_64-linux
97+
98+
DEPENDENCIES
99+
benchmark
100+
benchmark-ips
101+
erb (~> 5.1.3)
102+
faker!
103+
irb
104+
minitest (= 5.27.0)
105+
pry (= 0.16.0)
106+
rake (= 13.3.1)
107+
rubocop (= 1.82.1)
108+
rubocop-minitest (= 0.38.2)
109+
rubocop-rake (= 0.7.1)
110+
simplecov (= 0.22.0)
111+
test-unit (= 3.7.7)
112+
timecop (= 0.9.10)
113+
yard (= 0.9.38)
114+
115+
BUNDLED WITH
116+
4.0.3

0 commit comments

Comments
 (0)