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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4da03a7ad01471d0dc369726d08bdbb3b2dc57e1
4
- data.tar.gz: 5175f24936447b166128f6668cef3536fb13d03d
3
+ metadata.gz: 727057d0e69e5763553a1af79fb1ab6e910f93d8
4
+ data.tar.gz: 6049e313e26c62d86381c01ae693fd2938809b45
5
5
  SHA512:
6
- metadata.gz: 73e2ea35e70c958c7a8c019f7af31e80397f2893ae06aaf19bfdb412315db5cf11c03ce3854312c0f734ce40a5fc2a3413965e9659c2176fa71338ea3d3491ca
7
- data.tar.gz: a5f97dc9a8fd031a602e1ddfb133cacf7c4656332ae4db80ece655e8c7cf02409f2d47aa7c16e510a76df50b280a5f4a4965fa8d21c6fab2d9b43c70f6483551
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xcake (0.6.4)
4
+ xcake (0.6.5)
5
5
  claide (~> 0.9.1)
6
6
  hooks (~> 0.4.1)
7
7
  molinillo
@@ -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
- xcconfig = install_xcconfig(configuration)
35
- native_configuration_object.base_configuration_reference = xcconfig
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
@@ -1,3 +1,3 @@
1
1
  module Xcake
2
- VERSION = "0.6.4".freeze
2
+ VERSION = "0.6.5".freeze
3
3
  end
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
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-21 00:00:00.000000000 Z
11
+ date: 2016-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler