Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add constraint to ActiveSupport gem to use version lower than 7.1 #751

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion train.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ Gem::Specification.new do |spec|
spec.add_dependency "train-winrm", "~> 0.2"

# azure, docker, gcp dependencies
spec.add_dependency "activesupport", ">= 6.0.3.1"
# Note: Currently, 7.1.0 causes issue as: `<class:Array>': undefined method `deprecator' for ActiveSupport:Module (NoMethodError)
# Remove the version constraint when we can upgrade to 7.1.1 post stable release of Activesupport 7.1
# More details on the issue: https://github.com/rails/rails/issues/49495
spec.add_dependency "activesupport", ">= 6.0.3.1", "< 7.1"
spec.add_dependency "inifile", "~> 3.0"
spec.add_dependency "azure_graph_rbac", "~> 0.16"
spec.add_dependency "azure_mgmt_key_vault", "~> 0.17"
Expand Down