Skip to content

Commit f4105c9

Browse files
chore: added rubycritic to see what feedback it gives.
1 parent c8bbb0f commit f4105c9

File tree

2 files changed

+100
-0
lines changed

2 files changed

+100
-0
lines changed

Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
source 'https://rubygems.org'
22
ruby '3.2.2'
3+
group :development do
4+
gem 'rubycritic'
5+
end
36
group :test do
47
gem 'rspec'
58
end

Gemfile.lock

+97
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,74 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4+
addressable (2.8.6)
5+
public_suffix (>= 2.0.2, < 6.0)
6+
ast (2.4.2)
7+
axiom-types (0.1.1)
8+
descendants_tracker (~> 0.0.4)
9+
ice_nine (~> 0.11.0)
10+
thread_safe (~> 0.3, >= 0.3.1)
11+
bigdecimal (3.1.6)
12+
coercible (1.0.0)
13+
descendants_tracker (~> 0.0.1)
14+
concurrent-ruby (1.2.3)
15+
descendants_tracker (0.0.4)
16+
thread_safe (~> 0.3, >= 0.3.1)
417
diff-lcs (1.5.0)
18+
docile (1.4.0)
19+
dry-configurable (1.1.0)
20+
dry-core (~> 1.0, < 2)
21+
zeitwerk (~> 2.6)
22+
dry-core (1.0.1)
23+
concurrent-ruby (~> 1.0)
24+
zeitwerk (~> 2.6)
25+
dry-inflector (1.0.0)
26+
dry-initializer (3.1.1)
27+
dry-logic (1.5.0)
28+
concurrent-ruby (~> 1.0)
29+
dry-core (~> 1.0, < 2)
30+
zeitwerk (~> 2.6)
31+
dry-schema (1.13.3)
32+
concurrent-ruby (~> 1.0)
33+
dry-configurable (~> 1.0, >= 1.0.1)
34+
dry-core (~> 1.0, < 2)
35+
dry-initializer (~> 3.0)
36+
dry-logic (>= 1.4, < 2)
37+
dry-types (>= 1.7, < 2)
38+
zeitwerk (~> 2.6)
39+
dry-types (1.7.2)
40+
bigdecimal (~> 3.0)
41+
concurrent-ruby (~> 1.0)
42+
dry-core (~> 1.0)
43+
dry-inflector (~> 1.0)
44+
dry-logic (~> 1.4)
45+
zeitwerk (~> 2.6)
46+
erubi (1.12.0)
47+
flay (2.13.2)
48+
erubi (~> 1.10)
49+
path_expander (~> 1.0)
50+
ruby_parser (~> 3.0)
51+
sexp_processor (~> 4.0)
52+
flog (4.8.0)
53+
path_expander (~> 1.0)
54+
ruby_parser (~> 3.1, > 3.1.0)
55+
sexp_processor (~> 4.8)
56+
ice_nine (0.11.2)
57+
launchy (2.5.2)
58+
addressable (~> 2.8)
59+
parser (3.3.0.5)
60+
ast (~> 2.4.1)
61+
racc
62+
path_expander (1.1.1)
63+
public_suffix (5.0.4)
64+
racc (1.7.3)
65+
rainbow (3.1.1)
66+
reek (6.3.0)
67+
dry-schema (~> 1.13.0)
68+
parser (~> 3.3.0)
69+
rainbow (>= 2.0, < 4.0)
70+
rexml (~> 3.1)
71+
rexml (3.2.6)
572
rspec (3.12.0)
673
rspec-core (~> 3.12.0)
774
rspec-expectations (~> 3.12.0)
@@ -15,6 +82,35 @@ GEM
1582
diff-lcs (>= 1.2.0, < 2.0)
1683
rspec-support (~> 3.12.0)
1784
rspec-support (3.12.1)
85+
ruby_parser (3.21.0)
86+
racc (~> 1.5)
87+
sexp_processor (~> 4.16)
88+
rubycritic (4.9.0)
89+
flay (~> 2.13)
90+
flog (~> 4.7)
91+
launchy (>= 2.5.2)
92+
parser (>= 3.2.2.1)
93+
rainbow (~> 3.1.1)
94+
reek (~> 6.0, < 7.0)
95+
rexml
96+
ruby_parser (~> 3.20)
97+
simplecov (>= 0.22.0)
98+
tty-which (~> 0.5.0)
99+
virtus (~> 2.0)
100+
sexp_processor (4.17.1)
101+
simplecov (0.22.0)
102+
docile (~> 1.1)
103+
simplecov-html (~> 0.11)
104+
simplecov_json_formatter (~> 0.1)
105+
simplecov-html (0.12.3)
106+
simplecov_json_formatter (0.1.4)
107+
thread_safe (0.3.6)
108+
tty-which (0.5.0)
109+
virtus (2.0.0)
110+
axiom-types (~> 0.1)
111+
coercible (~> 1.0)
112+
descendants_tracker (~> 0.0, >= 0.0.3)
113+
zeitwerk (2.6.13)
18114

19115
PLATFORMS
20116
arm64-darwin-21
@@ -23,6 +119,7 @@ PLATFORMS
23119

24120
DEPENDENCIES
25121
rspec
122+
rubycritic
26123

27124
RUBY VERSION
28125
ruby 3.2.2p53

0 commit comments

Comments
 (0)