Skip to content

Commit edc1c3c

Browse files
committed
chore(): install rubocop as dev dependency
1 parent 524cc42 commit edc1c3c

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

Gemfile.lock

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ GEM
7777
arbre (1.2.1)
7878
activesupport (>= 3.0.0)
7979
arel (9.0.0)
80+
ast (2.4.0)
8081
bcrypt (3.1.13)
8182
builder (3.2.4)
8283
capybara (3.31.0)
@@ -142,6 +143,7 @@ GEM
142143
has_scope (~> 0.6)
143144
railties (>= 5.0, < 6.1)
144145
responders (>= 2, < 4)
146+
jaro_winkler (1.5.4)
145147
jquery-rails (4.3.5)
146148
rails-dom-testing (>= 1, < 3)
147149
railties (>= 4.2.0)
@@ -191,13 +193,18 @@ GEM
191193
mime-types
192194
mimemagic (~> 0.3.0)
193195
terrapin (~> 0.6.0)
196+
parallel (1.19.1)
197+
parser (2.7.1.2)
198+
ast (~> 2.4.0)
194199
polyamorous (2.3.2)
195200
activerecord (>= 5.2.1)
201+
powerpack (0.1.2)
196202
pry (0.12.2)
197203
coderay (~> 1.1.0)
198204
method_source (~> 0.9.0)
199205
pry-rails (0.3.9)
200206
pry (>= 0.10.4)
207+
psych (3.1.0)
201208
public_suffix (4.0.3)
202209
puma (4.3.3)
203210
nio4r (~> 2.0)
@@ -228,6 +235,7 @@ GEM
228235
method_source
229236
rake (>= 0.8.7)
230237
thor (>= 0.19.0, < 2.0)
238+
rainbow (3.0.0)
231239
rake (13.0.1)
232240
ransack (2.3.2)
233241
activerecord (>= 5.2.1)
@@ -263,6 +271,16 @@ GEM
263271
rspec-mocks (~> 3.9.0)
264272
rspec-support (~> 3.9.0)
265273
rspec-support (3.9.2)
274+
rubocop (0.65.0)
275+
jaro_winkler (~> 1.5.1)
276+
parallel (~> 1.10)
277+
parser (>= 2.5, != 2.5.1.1)
278+
powerpack (~> 0.1)
279+
psych (>= 3.1.0)
280+
rainbow (>= 2.2.2, < 4.0)
281+
ruby-progressbar (~> 1.7)
282+
unicode-display_width (~> 1.4.0)
283+
ruby-progressbar (1.10.1)
266284
rubyzip (2.2.0)
267285
sassc (2.2.1)
268286
ffi (~> 1.9)
@@ -293,6 +311,7 @@ GEM
293311
tilt (2.0.10)
294312
tzinfo (1.2.6)
295313
thread_safe (~> 0.1)
314+
unicode-display_width (1.4.1)
296315
warden (1.2.8)
297316
rack (>= 2.0.6)
298317
webdrivers (4.2.0)
@@ -327,6 +346,7 @@ DEPENDENCIES
327346
puma
328347
rails (~> 5.2, >= 5.2.4.1)
329348
rspec-rails
349+
rubocop (~> 0.65.0)
330350
shoulda-matchers
331351
sqlite3
332352
webdrivers

activeadmin_addons.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Gem::Specification.new do |s|
3737
s.add_development_dependency "puma"
3838
s.add_development_dependency "rails", "~> 5.2", ">= 5.2.4.1"
3939
s.add_development_dependency "rspec-rails"
40+
s.add_development_dependency "rubocop", "~> 0.65.0"
4041
s.add_development_dependency "shoulda-matchers"
4142
s.add_development_dependency "sqlite3"
4243
s.add_development_dependency "webdrivers"

0 commit comments

Comments
 (0)