Gemfile in manageiq-messaging-1.4.1 vs Gemfile in manageiq-messaging-1.4.2

- old
+ new

@@ -1,11 +1,16 @@ source 'https://rubygems.org' # Specify your gem's dependencies in manageiq-messaging.gemspec gemspec -case ENV['TEST_RAILS_VERSION'] -when "6.0" - gem "activesupport", "~>6.0.4" -when "6.1" - gem "activesupport", "~>6.1.4" -end +minimum_version = + case ENV['TEST_RAILS_VERSION'] + when "6.0" + "~>6.0.4" + when "7.0" + "~>7.0.8" + else + "~>6.1.4" + end + +gem "activesupport", minimum_version