From a7db2503598883f28f0ce55a57d9ca934030acc7 Mon Sep 17 00:00:00 2001 From: David Gay Date: Sat, 13 Apr 2024 19:39:32 -0400 Subject: rubocop; gems --- Gemfile.lock | 49 +++++++++++++++++++++++++++++++++--- config/application.rb | 2 +- test/application_system_test_case.rb | 2 +- 3 files changed, 47 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 75b7a65..383634a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -77,7 +77,9 @@ GEM tzinfo (~> 2.0) addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) + ast (2.4.2) base64 (0.2.0) + bcrypt (3.1.20) bigdecimal (3.1.7) bindex (0.8.1) bootsnap (1.18.3) @@ -113,6 +115,8 @@ GEM irb (1.12.0) rdoc reline (>= 0.4.2) + json (2.7.1) + language_server-protocol (3.17.0.3) loofah (2.22.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) @@ -149,6 +153,10 @@ GEM racc (~> 1.4) nokogiri (1.16.4-x86_64-linux) racc (~> 1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc pg (1.5.6) propshaft (0.8.0) actionpack (>= 7.0.0) @@ -198,6 +206,7 @@ GEM rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) + rainbow (3.1.1) rake (13.2.1) rdoc (6.6.3.1) psych (>= 4.0.0) @@ -205,6 +214,36 @@ GEM reline (0.5.1) io-console (~> 0.5) rexml (3.2.6) + rubocop (1.62.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.31.2) + parser (>= 3.3.0.4) + rubocop-minitest (0.35.0) + rubocop (>= 1.61, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + rubocop-rails (2.24.1) + activesupport (>= 4.2.0) + rack (>= 1.1) + rubocop (>= 1.33.0, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) + rubocop-rails-omakase (1.0.0) + rubocop + rubocop-minitest + rubocop-performance + rubocop-rails + ruby-progressbar (1.13.0) rubyzip (2.3.2) selenium-webdriver (4.19.0) base64 (~> 0.2) @@ -222,6 +261,7 @@ GEM railties (>= 6.0.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) + unicode-display_width (2.5.0) web-console (4.2.1) actionview (>= 6.0.0) activemodel (>= 6.0.0) @@ -245,18 +285,19 @@ PLATFORMS x86_64-linux DEPENDENCIES + bcrypt bootsnap capybara debug importmap-rails - pg (~> 1.1) + pg propshaft - puma (>= 5.0) - rails (~> 7.1.3, >= 7.1.3.2) + puma + rails + rubocop-rails-omakase selenium-webdriver stimulus-rails turbo-rails - tzinfo-data web-console RUBY VERSION diff --git a/config/application.rb b/config/application.rb index 14716d1..e9260e6 100644 --- a/config/application.rb +++ b/config/application.rb @@ -26,7 +26,7 @@ module Dmn # Please, add to the `ignore` list any other `lib` subdirectories that do # not contain `.rb` files, or that should not be reloaded or eager loaded. # Common ones are `templates`, `generators`, or `middleware`, for example. - config.autoload_lib(ignore: %w(assets tasks)) + config.autoload_lib(ignore: %w[assets tasks]) # Configuration for the application, engines, and railties goes here. # diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb index d19212a..d7e6bba 100644 --- a/test/application_system_test_case.rb +++ b/test/application_system_test_case.rb @@ -1,5 +1,5 @@ require "test_helper" class ApplicationSystemTestCase < ActionDispatch::SystemTestCase - driven_by :selenium, using: :chrome, screen_size: [1400, 1400] + driven_by :selenium, using: :chrome, screen_size: [ 1400, 1400 ] end -- cgit v1.2.3