Skip to content

Commit b1a0745

Browse files
committed
add linting gems to dev Gemfile
1 parent fd41570 commit b1a0745

File tree

2 files changed

+34
-5
lines changed

2 files changed

+34
-5
lines changed

Diff for: Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ source "http://rubygems.org"
44

55
gemspec
66
# This is an optional dev-dependency, required whenever sprockets is required
7+
gem "rubocop"
8+
gem "rubocop-minitest"
9+
gem "rubocop-performance"

Diff for: Gemfile.lock

+31-5
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ GEM
3636
bundler
3737
rake
3838
thor (>= 0.14.0)
39+
ast (2.4.2)
3940
babel-source (5.8.35)
4041
babel-transpiler (0.7.0)
4142
babel-source (>= 4.0, < 6)
@@ -92,6 +93,7 @@ GEM
9293
actionview (>= 5.0.0)
9394
activesupport (>= 5.0.0)
9495
json (2.3.0)
96+
language_server-protocol (3.17.0.3)
9597
listen (3.0.8)
9698
rb-fsevent (~> 0.9, >= 0.9.4)
9799
rb-inotify (~> 0.9, >= 0.9.7)
@@ -102,12 +104,8 @@ GEM
102104
matrix (0.4.2)
103105
method_source (1.0.0)
104106
mini_mime (1.0.2)
105-
mini_portile2 (2.8.5)
106107
minitest (5.17.0)
107108
nenv (0.3.0)
108-
nokogiri (1.14.3)
109-
mini_portile2 (~> 2.8.0)
110-
racc (~> 1.4)
111109
nokogiri (1.14.3-x86_64-darwin)
112110
racc (~> 1.4)
113111
nokogiri (1.14.3-x86_64-linux)
@@ -116,6 +114,10 @@ GEM
116114
nenv (~> 0.1)
117115
shellany (~> 0.0)
118116
package_json (0.1.0)
117+
parallel (1.24.0)
118+
parser (3.3.0.5)
119+
ast (~> 2.4.1)
120+
racc
119121
pry (0.14.2)
120122
coderay (~> 1.1)
121123
method_source (~> 1.0)
@@ -138,12 +140,33 @@ GEM
138140
method_source
139141
rake (>= 0.8.7)
140142
thor (>= 0.20.3, < 2.0)
143+
rainbow (3.1.1)
141144
rake (13.0.1)
142145
rb-fsevent (0.11.2)
143146
rb-inotify (0.10.1)
144147
ffi (~> 1.0)
145148
regexp_parser (2.6.0)
146149
rexml (3.2.5)
150+
rubocop (1.63.1)
151+
json (~> 2.3)
152+
language_server-protocol (>= 3.17.0)
153+
parallel (~> 1.10)
154+
parser (>= 3.3.0.2)
155+
rainbow (>= 2.2.2, < 4.0)
156+
regexp_parser (>= 1.8, < 3.0)
157+
rexml (>= 3.2.5, < 4.0)
158+
rubocop-ast (>= 1.31.1, < 2.0)
159+
ruby-progressbar (~> 1.7)
160+
unicode-display_width (>= 2.4.0, < 3.0)
161+
rubocop-ast (1.31.2)
162+
parser (>= 3.3.0.4)
163+
rubocop-minitest (0.35.0)
164+
rubocop (>= 1.61, < 2.0)
165+
rubocop-ast (>= 1.31.1, < 2.0)
166+
rubocop-performance (1.21.0)
167+
rubocop (>= 1.48.1, < 2.0)
168+
rubocop-ast (>= 1.31.1, < 2.0)
169+
ruby-progressbar (1.13.0)
147170
rubyzip (2.3.2)
148171
selenium-webdriver (4.9.0)
149172
rexml (~> 3.2, >= 3.2.5)
@@ -161,13 +184,13 @@ GEM
161184
tilt (2.1.0)
162185
tzinfo (1.2.10)
163186
thread_safe (~> 0.1)
187+
unicode-display_width (2.5.0)
164188
websocket (1.2.9)
165189
xpath (3.2.0)
166190
nokogiri (~> 1.8)
167191
zeitwerk (2.6.6)
168192

169193
PLATFORMS
170-
ruby
171194
x86_64-darwin-20
172195
x86_64-linux
173196

@@ -186,6 +209,9 @@ DEPENDENCIES
186209
package_json
187210
pry-byebug
188211
react-rails!
212+
rubocop
213+
rubocop-minitest
214+
rubocop-performance
189215
selenium-webdriver
190216
test-unit (~> 2.5)
191217

0 commit comments

Comments
 (0)