xcake 0.6.11 → 0.6.12
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/CHANGELOG.md +5 -1
- data/Gemfile.lock +1 -1
- data/lib/xcake/generator/project_structure_generator.rb +4 -8
- data/lib/xcake/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bac16b52110192bf080c3fafaef8c2a76f179a91
|
|
4
|
+
data.tar.gz: 17f86b7943b2ca8ee84e8ebcc756645ff4622827
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 148184f095ca3df622eede80a4f922423023c05fb45531395d850ddbee3a0912b8a425a96c5ff8d8c993b189af20c9fcd9e9efe50bab5af28bada9edca721c09
|
|
7
|
+
data.tar.gz: 9216b64577de2b066ca387f0eed386e3c2100fc35cce16f27bd0bebdc0228339bda2d2bd8fbe84e9285cded6c186f5d84ad95c9676e354f4b8a5c8177f46b5a7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
v0.6.12
|
|
2
|
+
=======
|
|
3
|
+
- Fixes issues when resolving project if sensible default configurations.
|
|
4
|
+
|
|
1
5
|
v0.6.11
|
|
2
6
|
=======
|
|
3
|
-
- Fixes issues with system frameworks
|
|
7
|
+
- Fixes issues with system frameworks with inherited configurations.
|
|
4
8
|
|
|
5
9
|
v0.6.10
|
|
6
10
|
=======
|
data/Gemfile.lock
CHANGED
|
@@ -16,8 +16,8 @@ module Xcake
|
|
|
16
16
|
|
|
17
17
|
@project = project
|
|
18
18
|
|
|
19
|
-
@project.
|
|
20
|
-
@project.
|
|
19
|
+
@project.configuration :Debug, :debug if @project.configurations_of_type(:debug).count == 0
|
|
20
|
+
@project.configuration :Release, :release if @project.configurations_of_type(:release).count == 0
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
def leave_project(project)
|
|
@@ -27,12 +27,8 @@ module Xcake
|
|
|
27
27
|
|
|
28
28
|
puts "Resolving target #{target.name}..."
|
|
29
29
|
|
|
30
|
-
@project.
|
|
31
|
-
target.
|
|
32
|
-
end
|
|
33
|
-
|
|
34
|
-
@project.release_configurations.each do |b|
|
|
35
|
-
target.release_configuration(b.name)
|
|
30
|
+
@project.all_configurations.each do |c|
|
|
31
|
+
target.configuration(c.name, c.type)
|
|
36
32
|
end
|
|
37
33
|
end
|
|
38
34
|
|
data/lib/xcake/version.rb
CHANGED