Skip to content

Commit 8e66c4b

Browse files
committed
added Rubocop and Brakeman to Gemfile to help discover code issues
1 parent f7e1f9f commit 8e66c4b

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

Diff for: Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,6 @@ gem 'sidekiq'
6464
gem 'net-ssh'
6565
gem 'ed25519'
6666
gem 'bcrypt_pbkdf'
67+
68+
gem 'rubocop'
69+
gem 'brakeman'

Diff for: Gemfile.lock

+22
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ GEM
6464
public_suffix (>= 2.0.2, < 5.0)
6565
archive-zip (0.12.0)
6666
io-like (~> 0.3.0)
67+
ast (2.4.2)
6768
autoprefixer-rails (10.2.4.0)
6869
execjs
6970
bcrypt (3.1.16)
@@ -79,6 +80,7 @@ GEM
7980
autoprefixer-rails (>= 9.1.0)
8081
popper_js (>= 1.14.3, < 2)
8182
sassc-rails (>= 2.0.0)
83+
brakeman (5.0.0)
8284
builder (3.2.4)
8385
byebug (11.1.3)
8486
cancancan (3.2.1)
@@ -175,6 +177,9 @@ GEM
175177
nokogiri (1.11.3-x86_64-linux)
176178
racc (~> 1.4)
177179
orm_adapter (0.5.0)
180+
parallel (1.20.1)
181+
parser (3.0.1.0)
182+
ast (~> 2.4.1)
178183
pg (1.2.3)
179184
pg (1.2.3-x64-mingw32)
180185
pg (1.2.3-x86-mingw32)
@@ -212,6 +217,7 @@ GEM
212217
method_source
213218
rake (>= 0.8.7)
214219
thor (~> 1.0)
220+
rainbow (3.0.0)
215221
rake (13.0.3)
216222
rb-fsevent (0.10.4)
217223
rb-inotify (0.10.1)
@@ -221,6 +227,19 @@ GEM
221227
responders (3.0.1)
222228
actionpack (>= 5.0)
223229
railties (>= 5.0)
230+
rexml (3.2.5)
231+
rubocop (1.13.0)
232+
parallel (~> 1.10)
233+
parser (>= 3.0.0.0)
234+
rainbow (>= 2.2.2, < 4.0)
235+
regexp_parser (>= 1.8, < 3.0)
236+
rexml
237+
rubocop-ast (>= 1.2.0, < 2.0)
238+
ruby-progressbar (~> 1.7)
239+
unicode-display_width (>= 1.4.0, < 3.0)
240+
rubocop-ast (1.4.1)
241+
parser (>= 2.7.1.5)
242+
ruby-progressbar (1.11.0)
224243
ruby_dep (1.5.0)
225244
rubyzip (2.3.0)
226245
sass (3.7.4)
@@ -271,6 +290,7 @@ GEM
271290
concurrent-ruby (~> 1.0)
272291
uglifier (4.2.0)
273292
execjs (>= 0.3.0, < 3)
293+
unicode-display_width (2.0.0)
274294
warden (1.2.9)
275295
rack (>= 2.0.9)
276296
web-console (4.1.0)
@@ -299,6 +319,7 @@ DEPENDENCIES
299319
bitfields
300320
bootsnap (>= 1.1.0)
301321
bootstrap (>= 4.3.1)
322+
brakeman
302323
byebug
303324
cancancan
304325
capybara (>= 2.15, < 4.0)
@@ -319,6 +340,7 @@ DEPENDENCIES
319340
puma (~> 5.1.0)
320341
rails (~> 6.1.1)
321342
railties (>= 6.0.0)
343+
rubocop
322344
sass-rails (~> 5.0)
323345
selenium-webdriver
324346
sidekiq

0 commit comments

Comments
 (0)