File tree 1 file changed +17
-8
lines changed
1 file changed +17
-8
lines changed Original file line number Diff line number Diff line change 13
13
14
14
source "https://rubygems.org"
15
15
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
+
16
32
gem 'fastlane' , '2.227.0'
17
33
gem 'fastlane-plugin-changelog' , '0.16.0'
18
34
gem 'fastlane-plugin-mattermost' , '1.3.2'
19
- gem 'json' , '2.10.2'
20
35
gem 'cocoapods' , '1.16.2'
36
+ gem 'json' , '2.10.2'
21
37
gem 'net-http' , '0.6.0'
22
38
gem 'xcode-install' , '2.8.1'
23
39
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
-
31
40
# Magic
32
41
33
42
plugins_path = File . join ( File . dirname ( __FILE__ ) , 'DesignToolbox/fastlane' , 'Pluginfile' )
You can’t perform that action at this time.
0 commit comments