Skip to content

Commit

Permalink
pin rake to 10.x as newer make the tests fail
Browse files Browse the repository at this point in the history
this limits us to Ruby < 3.2 tho, as rake 10 is not compatible with 3.2+
  • Loading branch information
evgeni committed Jan 25, 2024
1 parent 94424c3 commit f66bd75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hammer_cli_katello.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Gem::Specification.new do |gem|
gem.name = 'hammer_cli_katello'
gem.require_paths = ['lib']
gem.version = HammerCLIKatello.version
gem.required_ruby_version = '>= 2.7'
gem.required_ruby_version = '>= 2.7', '< 3.2'

gem.add_dependency 'hammer_cli_foreman', '~> 3.9'
gem.add_dependency 'hammer_cli_foreman_tasks', '~> 0.0.20'
Expand All @@ -73,7 +73,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency 'minitest', '4.7.4'
gem.add_development_dependency 'minitest-spec-context', '~> 0.0.5'
gem.add_development_dependency 'mocha', '~> 2.0'
gem.add_development_dependency 'rake', '~> 13.0'
gem.add_development_dependency 'rake', '~> 10.0'
gem.add_development_dependency 'rubocop', '0.42'
gem.add_development_dependency 'rubocop-checkstyle_formatter', '~> 0.4'
gem.add_development_dependency 'thor', '~> 1.0'
Expand Down

0 comments on commit f66bd75

Please sign in to comment.