xcodeproj 1.24.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/xcodeproj/config.rb +1 -1
- data/lib/xcodeproj/constants.rb +2 -1
- data/lib/xcodeproj/gem_version.rb +1 -1
- data/lib/xcodeproj/project/object/root_object.rb +4 -0
- data/lib/xcodeproj/project.rb +2 -2
- metadata +12 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7c20ca5a824ae24e92912281ba0fb550f5da31a7d0a578947db31f71698081d
|
4
|
+
data.tar.gz: e24ba1fb83e6c6bede1a2b28af38eec0999c49a87f4008426ad8a3271e943358
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25f6136666d41ae86f7308ed9209f07c2f007bc92563072f0b13e749e1afbbb1e25f8ba9f47999637b92424d3170f9e1082cccff85a2784d388871b2382b73db
|
7
|
+
data.tar.gz: fa0be9d69b8b56b5ce20422225ed159cf12c73ef919fbd0e2d92f9b4f1a80fbdcd04756238aa0533f1bb486928ccafe75ec707773b95aadac9657ff938e86d6c
|
data/lib/xcodeproj/config.rb
CHANGED
data/lib/xcodeproj/constants.rb
CHANGED
@@ -36,7 +36,7 @@ module Xcodeproj
|
|
36
36
|
|
37
37
|
# @return [String] The last known object version to Xcodeproj.
|
38
38
|
#
|
39
|
-
LAST_KNOWN_OBJECT_VERSION =
|
39
|
+
LAST_KNOWN_OBJECT_VERSION = 63
|
40
40
|
|
41
41
|
# @return [String] The last known Xcode version to Xcodeproj.
|
42
42
|
#
|
@@ -132,6 +132,7 @@ module Xcodeproj
|
|
132
132
|
# @return [Hash] The compatibility version string for different object versions.
|
133
133
|
#
|
134
134
|
COMPATIBILITY_VERSION_BY_OBJECT_VERSION = {
|
135
|
+
63 => 'Xcode 15.3',
|
135
136
|
60 => 'Xcode 15.0',
|
136
137
|
56 => 'Xcode 14.0',
|
137
138
|
55 => 'Xcode 13.0',
|
@@ -49,6 +49,10 @@ module Xcodeproj
|
|
49
49
|
#
|
50
50
|
has_one :main_group, PBXGroup
|
51
51
|
|
52
|
+
# @return [String] whether minimizes project reference proxies
|
53
|
+
#
|
54
|
+
attribute :minimized_project_reference_proxies, String, '0'
|
55
|
+
|
52
56
|
# @return [PBXGroup] the group containing the references to products of
|
53
57
|
# the project.
|
54
58
|
#
|
data/lib/xcodeproj/project.rb
CHANGED
@@ -221,11 +221,11 @@ module Xcodeproj
|
|
221
221
|
end
|
222
222
|
|
223
223
|
if archive_version.to_i > Constants::LAST_KNOWN_ARCHIVE_VERSION
|
224
|
-
|
224
|
+
UI.warn "[Xcodeproj] Archive version (#{archive_version.to_i}) is higher than the latest supported by xcodeproj (#{Constants::LAST_KNOWN_ARCHIVE_VERSION})."
|
225
225
|
end
|
226
226
|
|
227
227
|
if object_version.to_i > Constants::LAST_KNOWN_OBJECT_VERSION
|
228
|
-
|
228
|
+
UI.warn "[Xcodeproj] Xcode project version (#{object_version.to_i}) is higher than the latest supported by xcodeproj (#{Constants::LAST_KNOWN_OBJECT_VERSION})."
|
229
229
|
end
|
230
230
|
|
231
231
|
# Projects can have product_ref_groups that are not listed in the main_groups["Products"]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcodeproj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: atomos
|
@@ -96,16 +96,22 @@ dependencies:
|
|
96
96
|
name: rexml
|
97
97
|
requirement: !ruby/object:Gem::Requirement
|
98
98
|
requirements:
|
99
|
-
- - "
|
99
|
+
- - ">="
|
100
100
|
- !ruby/object:Gem::Version
|
101
|
-
version: 3.2
|
101
|
+
version: 3.3.2
|
102
|
+
- - "<"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '4.0'
|
102
105
|
type: :runtime
|
103
106
|
prerelease: false
|
104
107
|
version_requirements: !ruby/object:Gem::Requirement
|
105
108
|
requirements:
|
106
|
-
- - "
|
109
|
+
- - ">="
|
107
110
|
- !ruby/object:Gem::Version
|
108
|
-
version: 3.2
|
111
|
+
version: 3.3.2
|
112
|
+
- - "<"
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '4.0'
|
109
115
|
description: Xcodeproj lets you create and modify Xcode projects from Ruby. Script
|
110
116
|
boring management tasks or build Xcode-friendly libraries. Also includes support
|
111
117
|
for Xcode workspaces (.xcworkspace) and configuration files (.xcconfig).
|