Skip to content

Commit 51f7ccc

Browse files
authored
Relax Ruby version requirement
This PR relaxes the Ruby version requirement to be `>= 2.5` considering we now have stable Ruby `3.x`
1 parent 858d0ed commit 51f7ccc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

solidus_dev_support.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Gem::Specification.new do |spec|
1616
spec.metadata['source_code_uri'] = 'https://github.com/solidusio/solidus_dev_support'
1717
spec.metadata['changelog_uri'] = 'https://github.com/solidusio/solidus_dev_support/blob/master/CHANGELOG.md'
1818

19-
spec.required_ruby_version = Gem::Requirement.new('~> 2.5')
20-
19+
spec.required_ruby_version = '>= 2.5.0'
20+
2121
# Specify which files should be added to the gem when it is released.
2222
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
2323
files = Dir.chdir(__dir__) { `git ls-files -z`.split("\x0") }

0 commit comments

Comments
 (0)