xcodeproj 1.12.0 → 1.13.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 +2 -0
- data/lib/xcodeproj/gem_version.rb +1 -1
- data/lib/xcodeproj/project/object/build_phase.rb +4 -0
- data/lib/xcodeproj/project/object/build_rule.rb +7 -0
- data/lib/xcodeproj/project/object/root_object.rb +1 -1
- data/lib/xcodeproj/project/object/target_dependency.rb +4 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 935c76050e4379c9a8d243645b906017320dd0d74c79e68b474b9bd1147d378e
|
4
|
+
data.tar.gz: 87bed25d95253e5ee9af635b0582c86fa76c8859bb2fab625e57b9f6a178db22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fad701838ce5ba4869348fb41e934a275d6442e2072baa3b02894ec4ad8f4b421532f79d543a8da817a74fa2b5fe6baab27a696b13afd3960029ac3fa799cbe5
|
7
|
+
data.tar.gz: 755f65c8c0e2589eb98ca78332df42a59d8ce031f3e3493f62a266e95933ef9cd835669929b8240bd0d541cac9939ddb0294c58c2c0e0cc67d4e3e40a2d9d873
|
data/lib/xcodeproj/config.rb
CHANGED
@@ -301,6 +301,10 @@ module Xcodeproj
|
|
301
301
|
#
|
302
302
|
attribute :show_env_vars_in_log, String
|
303
303
|
|
304
|
+
# @return [String] the discovered dependency file to use.
|
305
|
+
#
|
306
|
+
attribute :dependency_file, String
|
307
|
+
|
304
308
|
# @return [Hash{String => Hash}] A hash suitable to display the build
|
305
309
|
# phase to the user.
|
306
310
|
#
|
@@ -56,6 +56,13 @@ module Xcodeproj
|
|
56
56
|
#
|
57
57
|
attribute :output_files_compiler_flags, Array
|
58
58
|
|
59
|
+
# @return [String] whether the rule should be run once per architecture.
|
60
|
+
#
|
61
|
+
# @example
|
62
|
+
# `0`.
|
63
|
+
#
|
64
|
+
attribute :run_once_per_architecture, String
|
65
|
+
|
59
66
|
# @return [String] the content of the script to use for the build rule.
|
60
67
|
#
|
61
68
|
# @note This attribute is present if the #{#compiler_spec} is
|
@@ -42,7 +42,7 @@ module Xcodeproj
|
|
42
42
|
|
43
43
|
# @return [Array<String>] the list of known regions.
|
44
44
|
#
|
45
|
-
attribute :known_regions, Array,
|
45
|
+
attribute :known_regions, Array, %w(en Base)
|
46
46
|
|
47
47
|
# @return [PBXGroup] the main group of the project. The one displayed
|
48
48
|
# by Xcode in the Project Navigator.
|
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.13.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: 2019-
|
11
|
+
date: 2019-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: atomos
|
@@ -183,7 +183,7 @@ 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.
|
186
|
+
rubygems_version: 3.0.4
|
187
187
|
signing_key:
|
188
188
|
specification_version: 3
|
189
189
|
summary: Create and modify Xcode projects from Ruby.
|