From 8d71cb3d829b2b0192c9d4f667c9f4ed6e2d8bb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Jul 2025 13:16:57 +0000 Subject: [PATCH] Update brakeman requirement from ~> 6.2 to ~> 7.0 Updates the requirements on [brakeman](https://github.com/presidentbeef/brakeman) to permit the latest version. - [Release notes](https://github.com/presidentbeef/brakeman/releases) - [Changelog](https://github.com/presidentbeef/brakeman/blob/main/CHANGES.md) - [Commits](https://github.com/presidentbeef/brakeman/compare/v6.2.1...v7.0.2) --- updated-dependencies: - dependency-name: brakeman dependency-version: 7.0.2 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- textstat.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/textstat.gemspec b/textstat.gemspec index a1d2a47..1ca1018 100644 --- a/textstat.gemspec +++ b/textstat.gemspec @@ -77,9 +77,9 @@ Gem::Specification.new do |spec| # Brakeman only for Ruby 3.0+ if RUBY_VERSION >= '3.0.0' - spec.add_development_dependency 'brakeman', '~> 6.2' + spec.add_development_dependency 'brakeman', '~> 7.0' else # Fallback for Ruby 2.7 - spec.add_development_dependency 'brakeman', '~> 5.4' + spec.add_development_dependency 'brakeman', '~> 7.0' end end