Skip to content

Commit

Permalink
Allow ruby version 3.4 in gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
mjankowski committed Dec 25, 2024
1 parent 42c398d commit ea4566e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flatware-cucumber.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
)
s.homepage = 'http://github.com/briandunn/flatware'
s.licenses = ['MIT']
s.required_ruby_version = ['>= 2.6', '< 3.4']
s.required_ruby_version = ['>= 2.6', '< 3.5']
s.require_paths = ['lib']
s.add_dependency %(cucumber), '~> 3.0'
s.add_dependency %(flatware), Flatware::VERSION
Expand Down
2 changes: 1 addition & 1 deletion flatware-rspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |s|
)
s.homepage = 'http://github.com/briandunn/flatware'
s.licenses = ['MIT']
s.required_ruby_version = ['>= 2.6', '< 3.4']
s.required_ruby_version = ['>= 2.6', '< 3.5']
s.require_paths = ['lib']
s.add_dependency %(flatware), Flatware::VERSION
s.add_dependency %(rspec), '>= 3.6'
Expand Down
2 changes: 1 addition & 1 deletion flatware.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |s|
s.homepage = 'http://github.com/briandunn/flatware'

s.licenses = ['MIT']
s.required_ruby_version = ['>= 2.6', '< 3.4']
s.required_ruby_version = ['>= 2.6', '< 3.5']
s.require_paths = ['lib']
s.executables = ['flatware']
s.add_dependency %(drb)
Expand Down

0 comments on commit ea4566e

Please sign in to comment.