Skip to content

Commit

Permalink
Use core minimum but allow 7.0/7.1/7.2 since core sets upper limit
Browse files Browse the repository at this point in the history
This should be safe to use as is since the core application sets the rails version.
This will allow us to test with other versions on master.
  • Loading branch information
jrafanie committed Sep 24, 2024
1 parent 75d4179 commit 1956576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manageiq-messaging.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require 'manageiq/messaging/version'
Gem::Specification.new do |spec|
spec.name = "manageiq-messaging"
spec.version = ManageIQ::Messaging::VERSION
spec.required_ruby_version = '>= 2.4'
spec.required_ruby_version = '>= 3.1'
spec.authors = ["ManageIQ Authors"]

spec.summary = 'Client library for ManageIQ components to exchange messages through its internal message bus.'
Expand All @@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency 'activesupport', '>= 5.2.4.3', "<7.1"
spec.add_dependency 'activesupport', '>= 7.0.8', "<8.0"
spec.add_dependency 'rdkafka', '~> 0.8'
spec.add_dependency 'stomp', '~> 1.4.4'

Expand Down

0 comments on commit 1956576

Please sign in to comment.