diff --git a/Gemfile.lock b/Gemfile.lock index 06a85be..0c8d9cf 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -214,7 +214,7 @@ GEM method_source (~> 1.0) pry-rails (0.3.9) pry (>= 0.10.4) - public_suffix (5.0.1) + public_suffix (5.0.3) puma (6.3.0) nio4r (~> 2.0) racc (1.7.1) @@ -272,7 +272,7 @@ GEM rspec-expectations (3.12.3) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-mocks (3.12.5) + rspec-mocks (3.12.6) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-rails (6.0.3) @@ -334,12 +334,13 @@ GEM rubocop (~> 1.52.0) standard-custom (~> 1.0.0) standard-performance (~> 1.1.0) - standard-custom (1.0.1) + standard-custom (1.0.2) lint_roller (~> 1.0) - standard-performance (1.1.1) + rubocop (~> 1.50) + standard-performance (1.1.2) lint_roller (~> 1.1) rubocop-performance (~> 1.18.0) - terser (1.1.16) + terser (1.1.17) execjs (>= 0.3.0, < 3) thor (1.2.2) tilt (2.2.0) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 9e40fce..1574d5a 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,5 +1,4 @@ class ApplicationController < ActionController::Base - before_action :set_tab_selected def reject(error = "error") diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 6f1a76d..9d51b09 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -168,7 +168,7 @@ def dsv_labels def hash_to_text(h) str = "" h.each do |k, v| - str << "#{k.to_s.humanize}: #{v.to_s}" + str << "#{k.to_s.humanize}: #{v}" str << "
" unless k == h.keys.last end str