xcodeproj 0.11.0 → 0.11.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c359551b32f6801f62a0e83d2a9d682c9f2d3ca
|
4
|
+
data.tar.gz: e78c1b11fef93c796cbd67f38ee8affd8662d3aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d50bcf42f47d040b98ce2d32f707861f159d215d2524b8671f6ccd61e5361f9f1fb1545cbcbf8bbf2cf88b3051eee9e02fd41d76b65c619c1fdedcbd083ff1e
|
7
|
+
data.tar.gz: 7cdeaca5ded94e74cd365bdb0adf7af3bf3128998792147dfb17ddbcae089b58f16aa70c9d8744dc89364dba601a25454e5c0d65a208aca21846e25e7a3e5f5c
|
@@ -41,6 +41,14 @@ module Xcodeproj
|
|
41
41
|
return target.name if target
|
42
42
|
return target_proxy.remote_info if target_proxy
|
43
43
|
end
|
44
|
+
|
45
|
+
# @note This is a no-op, because the targets could theoretically depend
|
46
|
+
# on each other, leading to a stack level too deep error.
|
47
|
+
#
|
48
|
+
# @see AbstractObject#sort_recursively
|
49
|
+
#
|
50
|
+
def sort_recursively
|
51
|
+
end
|
44
52
|
end
|
45
53
|
end
|
46
54
|
end
|
@@ -147,6 +147,13 @@ module Xcodeproj
|
|
147
147
|
|
148
148
|
# Sorts the object and the objects that it references.
|
149
149
|
#
|
150
|
+
# @note Some objects may in turn refer back to objects higher in the
|
151
|
+
# object tree, which will lead to stack level deep errors. These
|
152
|
+
# objects should **not** try to perform a recursive sort, also
|
153
|
+
# because these objects would get sorted through other paths in the
|
154
|
+
# tree anyways.
|
155
|
+
#
|
156
|
+
# At the time of writing the only known case is `PBXTargetDependency`.
|
150
157
|
def sort_recursively
|
151
158
|
to_one_attributes.each do |attrb|
|
152
159
|
value = attrb.get_value(self)
|
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: 0.11.
|
4
|
+
version: 0.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: 2013-09-
|
11
|
+
date: 2013-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|