From f3efc770db3e4fe02df600efde20e710f117ef85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 09:00:58 +0000 Subject: [PATCH] gems: update solargraph requirement from ~> 0.50.0 to ~> 0.58.2 Updates the requirements on [solargraph](https://github.com/castwide/solargraph) to permit the latest version. - [Changelog](https://github.com/castwide/solargraph/blob/master/CHANGELOG.md) - [Commits](https://github.com/castwide/solargraph/compare/v0.50.0...v0.58.2) --- updated-dependencies: - dependency-name: solargraph dependency-version: 0.58.2 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- Rakefile | 9 +-------- openvpn-status-web.gemspec | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Rakefile b/Rakefile index 3660b1e..d4130c6 100644 --- a/Rakefile +++ b/Rakefile @@ -12,13 +12,6 @@ task :solargraph do sh 'solargraph typecheck' end -namespace :solargraph do - desc 'Should be run by developer once to prepare initial solargraph usage (fill caches etc.)' - task :init do - sh 'solargraph download-core' - end -end - namespace :bundle do desc 'Check for vulnerabilities with bundler-audit' task :audit do @@ -29,4 +22,4 @@ end task default: [:rubocop, :spec, 'bundle:audit'] desc 'Run all tasks desired for CI' -task ci: ['solargraph:init', :default] +task ci: [:default] diff --git a/openvpn-status-web.gemspec b/openvpn-status-web.gemspec index b8a16e3..6f36a1d 100644 --- a/openvpn-status-web.gemspec +++ b/openvpn-status-web.gemspec @@ -41,5 +41,5 @@ Gem::Specification.new do |s| s.add_development_dependency 'rubocop', '~> 1.82.0' s.add_development_dependency 'rubocop-rake', '~> 0.7.1' s.add_development_dependency 'rubocop-rspec', '~> 3.9.0' - s.add_development_dependency 'solargraph', '~> 0.50.0' + s.add_development_dependency 'solargraph', '~> 0.58.2' end