xcodeproj 1.17.1 → 1.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/xcodeproj/constants.rb +37 -35
- data/lib/xcodeproj/gem_version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db41f610ede2d2129632067db352ca8a6011f364e792629eb2cda1e95ded7006
|
4
|
+
data.tar.gz: b7c2a633c72ac7f3da93bbc621604ffb5550a02cf0e0126c9a932a0f4569640e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78013282d38ab9fb0829401198c34f4d0953078fe550687b6979bd94c43b40b3b9c45eb4ca99d785f3af03a48c6d0597f3425679e1b471f3d2e699b37e533973
|
7
|
+
data.tar.gz: a762fe5999cccd9b3da51a4f787513142b7a1e41875cc5870566b0e7d259b19ab891b2f46569e42c179029562356005feb3d2ad796e1bdd442cda5dbcffc7d41
|
data/lib/xcodeproj/constants.rb
CHANGED
@@ -140,46 +140,48 @@ module Xcodeproj
|
|
140
140
|
# @return [Hash] The uniform type identifier of various product types.
|
141
141
|
#
|
142
142
|
PRODUCT_TYPE_UTI = {
|
143
|
-
:application
|
144
|
-
:
|
145
|
-
:
|
146
|
-
:
|
147
|
-
:
|
148
|
-
:
|
149
|
-
:
|
150
|
-
:
|
151
|
-
:
|
152
|
-
:
|
153
|
-
:
|
154
|
-
:
|
155
|
-
:
|
156
|
-
:
|
157
|
-
:
|
158
|
-
:
|
159
|
-
:
|
160
|
-
:
|
161
|
-
:
|
162
|
-
:
|
143
|
+
:application => 'com.apple.product-type.application',
|
144
|
+
:application_on_demand_install_capable => 'com.apple.product-type.application.on-demand-install-capable',
|
145
|
+
:framework => 'com.apple.product-type.framework',
|
146
|
+
:dynamic_library => 'com.apple.product-type.library.dynamic',
|
147
|
+
:static_library => 'com.apple.product-type.library.static',
|
148
|
+
:bundle => 'com.apple.product-type.bundle',
|
149
|
+
:octest_bundle => 'com.apple.product-type.bundle',
|
150
|
+
:unit_test_bundle => 'com.apple.product-type.bundle.unit-test',
|
151
|
+
:ui_test_bundle => 'com.apple.product-type.bundle.ui-testing',
|
152
|
+
:app_extension => 'com.apple.product-type.app-extension',
|
153
|
+
:command_line_tool => 'com.apple.product-type.tool',
|
154
|
+
:watch_app => 'com.apple.product-type.application.watchapp',
|
155
|
+
:watch2_app => 'com.apple.product-type.application.watchapp2',
|
156
|
+
:watch2_app_container => 'com.apple.product-type.application.watchapp2-container',
|
157
|
+
:watch_extension => 'com.apple.product-type.watchkit-extension',
|
158
|
+
:watch2_extension => 'com.apple.product-type.watchkit2-extension',
|
159
|
+
:tv_extension => 'com.apple.product-type.tv-app-extension',
|
160
|
+
:messages_application => 'com.apple.product-type.application.messages',
|
161
|
+
:messages_extension => 'com.apple.product-type.app-extension.messages',
|
162
|
+
:sticker_pack => 'com.apple.product-type.app-extension.messages-sticker-pack',
|
163
|
+
:xpc_service => 'com.apple.product-type.xpc-service',
|
163
164
|
}.freeze
|
164
165
|
|
165
166
|
# @return [Hash] The extensions or the various product UTIs.
|
166
167
|
#
|
167
168
|
PRODUCT_UTI_EXTENSIONS = {
|
168
|
-
:application
|
169
|
-
:
|
170
|
-
:
|
171
|
-
:
|
172
|
-
:
|
173
|
-
:
|
174
|
-
:
|
175
|
-
:
|
176
|
-
:
|
177
|
-
:
|
178
|
-
:
|
179
|
-
:
|
180
|
-
:
|
181
|
-
:
|
182
|
-
:
|
169
|
+
:application => 'app',
|
170
|
+
:application_on_demand_install_capable => 'app',
|
171
|
+
:framework => 'framework',
|
172
|
+
:dynamic_library => 'dylib',
|
173
|
+
:static_library => 'a',
|
174
|
+
:bundle => 'bundle',
|
175
|
+
:octest_bundle => 'octest',
|
176
|
+
:unit_test_bundle => 'xctest',
|
177
|
+
:ui_test_bundle => 'xctest',
|
178
|
+
:app_extension => 'appex',
|
179
|
+
:messages_application => 'app',
|
180
|
+
:messages_extension => 'appex',
|
181
|
+
:sticker_pack => 'appex',
|
182
|
+
:watch2_extension => 'appex',
|
183
|
+
:watch2_app => 'app',
|
184
|
+
:watch2_app_container => 'app',
|
183
185
|
}.freeze
|
184
186
|
|
185
187
|
# @return [Hash] The common build settings grouped by platform, and build
|
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.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: atomos
|
@@ -168,7 +168,7 @@ homepage: https://github.com/cocoapods/xcodeproj
|
|
168
168
|
licenses:
|
169
169
|
- MIT
|
170
170
|
metadata: {}
|
171
|
-
post_install_message:
|
171
|
+
post_install_message:
|
172
172
|
rdoc_options: []
|
173
173
|
require_paths:
|
174
174
|
- lib
|
@@ -183,8 +183,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
183
|
- !ruby/object:Gem::Version
|
184
184
|
version: '0'
|
185
185
|
requirements: []
|
186
|
-
rubygems_version: 3.0.
|
187
|
-
signing_key:
|
186
|
+
rubygems_version: 3.0.3
|
187
|
+
signing_key:
|
188
188
|
specification_version: 3
|
189
189
|
summary: Create and modify Xcode projects from Ruby.
|
190
190
|
test_files: []
|