-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (34 loc) · 1.29 KB
/
Gemfile
File metadata and controls
42 lines (34 loc) · 1.29 KB
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
35
36
37
38
39
40
41
42
#
# 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"
# Troubleshooting
# ---------------
# 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.1.1'
# To fix
# "warning: abbrev was loaded from the standard library, but is not part of the default gems starting from Ruby 3.4.0.
# You can add abbrev to your Gemfile or gemspec to silence this warning.""
gem 'abbrev', '0.1.2'
# Really needed gems
# ------------------
gem 'fastlane', '2.232.1'
gem 'fastlane-plugin-changelog', '0.16.0'
gem 'fastlane-plugin-mattermost', '1.3.2'
gem 'json', '2.18.1'
gem 'net-http', '0.9.1'
gem 'xcode-install', '2.8.1'
# Magic
plugins_path = File.join(File.dirname(__FILE__), 'DesignToolbox/fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)