Skip to content

Commit 7bd15d1

Browse files
committed
ci: fix troubleshooting with native gems compilation
Signed-off-by: Pierre-Yves Lapersonne <[email protected]>
1 parent 7726758 commit 7bd15d1

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

Gemfile

+17-8
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,30 @@
1313

1414
source "https://rubygems.org"
1515

16+
# Troubleshooting
17+
# ---------------
18+
19+
# Embeded in net-http RubyGem without defined version
20+
# Solves CVE-2025-27221 (https://github.com/Orange-OpenSource/ouds-ios/security/dependabot/6)
21+
# Should be removed when net-http > 0.6.0 and CVE fixed
22+
gem 'uri', '1.0.3'
23+
24+
# To fix
25+
# "warning: abbrev was loaded from the standard library, but is not part of the default gems starting from Ruby 3.4.0.
26+
# You can add abbrev to your Gemfile or gemspec to silence this warning.""
27+
gem 'abbrev', '0.1.2'
28+
29+
# Really needed gems
30+
# ------------------
31+
1632
gem 'fastlane', '2.227.0'
1733
gem 'fastlane-plugin-changelog', '0.16.0'
1834
gem 'fastlane-plugin-mattermost', '1.3.2'
19-
gem 'json', '2.10.2'
2035
gem 'cocoapods', '1.16.2'
36+
gem 'json', '2.10.2'
2137
gem 'net-http', '0.6.0'
2238
gem 'xcode-install', '2.8.1'
2339

24-
# Additional RubyGems to fix some issues or vulnerabilities
25-
26-
# Embeded in net-http RubyGem without defined version
27-
# Solves CVE-2025-27221 (https://github.com/Orange-OpenSource/ouds-ios/security/dependabot/6)
28-
# Should be removed when net-http > 0.6.0 and CVE fixed
29-
gem 'uri', '1.0.3'
30-
3140
# Magic
3241

3342
plugins_path = File.join(File.dirname(__FILE__), 'DesignToolbox/fastlane', 'Pluginfile')

0 commit comments

Comments
 (0)