Skip to content

Commit fc77f50

Browse files
committed
Address gem build warning regarding activesupport declaration
1 parent 2ecc625 commit fc77f50

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
fastlane-plugin-wpmreleasetoolkit (14.1.0)
5-
activesupport (>= 6.1.7.1)
5+
activesupport (>= 6.1.7.1, < 8)
66
buildkit (~> 1.5)
77
chroma (= 0.2.0)
88
diffy (~> 3.3)

fastlane-plugin-wpmreleasetoolkit.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
2626
# since this would cause a circular dependency
2727

2828
# spec.add_dependency 'your-dependency', '~> 1.0.0'
29-
spec.add_dependency 'activesupport', '>= 6.1.7.1' # Required for fastlane to not crash when importing this plugin
29+
spec.add_dependency 'activesupport', '>= 6.1.7.1', '< 8' # Required for fastlane to not crash when importing this plugin
3030
spec.add_dependency 'buildkit', '~> 1.5'
3131
spec.add_dependency 'chroma', '0.2.0'
3232
spec.add_dependency 'diffy', '~> 3.3'

0 commit comments

Comments
 (0)