xcodeproj 1.11.0 → 1.11.1
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/gem_version.rb +1 -1
- data/lib/xcodeproj/project/object/build_configuration.rb +10 -4
- 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: 15616360424c23b6a83d573761206a46cac5ffccf3f4134a8599653efd84edbb
|
|
4
|
+
data.tar.gz: 8f0aa5a45bb559d514cdb77f7bbdc1581058be1213e6ba6f2043825d80d79499
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b0450ee994af0c5fed4df6b0902252ce03a614d7cd43078e62a79392001354e9351a6e11af6117fb6df5d8789164c8d372a3142b1873ff5841858e67f209932
|
|
7
|
+
data.tar.gz: 8b7fc93650e85069053663b85c1b81ace5650c281fefab7d6684978d97d7970c2ecc25c6a33651599311e55c780d144306b492c85c3ea5908bc5d52ad11a0d65
|
|
@@ -87,7 +87,7 @@ module Xcodeproj
|
|
|
87
87
|
setting = build_settings[key]
|
|
88
88
|
setting = resolve_variable_substitution(key, setting, root_target)
|
|
89
89
|
|
|
90
|
-
config_setting =
|
|
90
|
+
config_setting = config[key]
|
|
91
91
|
config_setting = resolve_variable_substitution(key, config_setting, root_target)
|
|
92
92
|
|
|
93
93
|
project_setting = project.build_configuration_list[name]
|
|
@@ -210,9 +210,15 @@ module Xcodeproj
|
|
|
210
210
|
end
|
|
211
211
|
|
|
212
212
|
def config
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
213
|
+
return {} unless base_configuration_reference
|
|
214
|
+
@config ||=
|
|
215
|
+
if base_configuration_reference.real_path.exist?
|
|
216
|
+
Xcodeproj::Config.new(base_configuration_reference.real_path).to_hash.tap do |hash|
|
|
217
|
+
normalize_array_settings(hash)
|
|
218
|
+
end
|
|
219
|
+
else
|
|
220
|
+
{}
|
|
221
|
+
end
|
|
216
222
|
end
|
|
217
223
|
|
|
218
224
|
#---------------------------------------------------------------------#
|
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.11.
|
|
4
|
+
version: 1.11.1
|
|
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-08-02 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.3
|
|
187
187
|
signing_key:
|
|
188
188
|
specification_version: 3
|
|
189
189
|
summary: Create and modify Xcode projects from Ruby.
|