Skip to content

Commit

Permalink
Fix: Update syntax_suggest dependency version constraint
Browse files Browse the repository at this point in the history
- `”syntax_suggest", "~> 1.1.0"`  to `”syntax_suggest", ">= 1.1.0"` in the gemspec

Why:
Allows greater flexibility for users by supporting newer versions of `syntax_suggest` beyond the `1.x` range, especially as 2.x requires ruby >= 3.0
  • Loading branch information
kurioscreative committed Dec 6, 2024
1 parent 7a1328b commit 0d13b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion derailed_benchmarks.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Gem::Specification.new do |gem|
gem.add_dependency "ruby-statistics", ">= 2.1"
end
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.2")
gem.add_dependency "syntax_suggest", "~> 1.1.0"
gem.add_dependency "syntax_suggest", ">= 1.1.0"
end
gem.add_dependency "mini_histogram", ">= 0.3.0"
gem.add_dependency "rack-test", ">= 0"
Expand Down

0 comments on commit 0d13b0e

Please sign in to comment.