-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
34 lines (28 loc) · 1.08 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# Software Name: OUDS iOS
# SPDX-FileCopyrightText: Copyright (c) Orange SA
# SPDX-License-Identifier: MIT
#
# This software is distributed under the MIT license,
# the text of which is available at https://opensource.org/license/MIT/
# or see the "LICENSE" file for more details.
#
# Authors: See CONTRIBUTORS.txt
# Software description: A SwiftUI components library with code examples for Orange Unified Design System
#
source "https://rubygems.org"
gem 'cocoapods', '1.16.2'
gem 'fastlane', '2.226.0'
gem 'fastlane-plugin-changelog', '0.16.0'
gem 'fastlane-plugin-mattermost', '1.3.2'
gem 'json', '2.10.1'
gem 'net-http', '0.6.0'
gem 'xcode-install', '2.8.1'
# Additional RubyGems to fix some issues or vulnerabilities
# Embeded in net-http RubyGem without defined version
# Solves CVE-2025-27221 (https://github.com/Orange-OpenSource/ouds-ios/security/dependabot/6)
# Should be removed when net-http > 0.6.0 and CVE fixed
gem 'uri', '1.0.3'
# Magic
plugins_path = File.join(File.dirname(__FILE__), 'DesignToolbox/fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)