xcake 0.6.4 → 0.6.5
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 +8 -0
- data/Gemfile.lock +1 -1
- data/lib/xcake/generator/configuration_generator.rb +4 -2
- data/lib/xcake/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 727057d0e69e5763553a1af79fb1ab6e910f93d8
|
|
4
|
+
data.tar.gz: 6049e313e26c62d86381c01ae693fd2938809b45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e310ceeed5601662333abf214b8bf2a0bd4388a4a202cbbf8cc64ceeaee7200825fe42aa37528bccd9652bc1d37c68f2343421eade1540960b29946a0c3e8cfb
|
|
7
|
+
data.tar.gz: f2a0f3333bc518d5abc7372c30eeedcdc10ba20586cb6efb52568c5bdaacc910a0509d48fba9da77b82b69514a353aac2b1f4007dcf04a4ef7e063fbae1177b1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
v0.6.5
|
|
2
|
+
======
|
|
3
|
+
- Fixes error when generating Xcode Project without specifying XCConfig files.
|
|
4
|
+
|
|
5
|
+
v0.6.4
|
|
6
|
+
======
|
|
7
|
+
- Fixes error when installing XCConfig files.
|
|
8
|
+
|
|
1
9
|
v0.6.3
|
|
2
10
|
======
|
|
3
11
|
- Adds support for adding system and static libraries (Thanks to @nodepad).
|
data/Gemfile.lock
CHANGED
|
@@ -31,8 +31,10 @@ module Xcake
|
|
|
31
31
|
native_configuration_object = @context.native_object_for(configuration_object)
|
|
32
32
|
native_configuration_object.build_configurations << build_configuration
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
if configuration.configuration_file != nil
|
|
35
|
+
xcconfig = install_xcconfig(configuration)
|
|
36
|
+
native_configuration_object.base_configuration_reference = xcconfig
|
|
37
|
+
end
|
|
36
38
|
end
|
|
37
39
|
end
|
|
38
40
|
|
data/lib/xcake/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcake
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Campbell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|