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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 19ac7ea3c7fb86b05306b60abda662b9588702db
4
- data.tar.gz: 1b1325aaa8b44c9d92ade0c41b278cdcd30df48f
3
+ metadata.gz: bac16b52110192bf080c3fafaef8c2a76f179a91
4
+ data.tar.gz: 17f86b7943b2ca8ee84e8ebcc756645ff4622827
5
5
  SHA512:
6
- metadata.gz: d7ff9602e680fe413c9b35361cddda11c41d2953ddade67911a13d3a27bdd5b9f223a12fe189899dfc67aedccbc0a793b3c2caac5440ef9c447fdac24ceb48c7
7
- data.tar.gz: fceb353bfe8891232b7b98407e24300dabbba7367d859ae9d36ff4fad5c31b3bcc5a0c72406d6042ed50a52feb987765576fece432fd589b85d740a0164823a8
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 when inherited configurations.
7
+ - Fixes issues with system frameworks with inherited configurations.
4
8
 
5
9
  v0.6.10
6
10
  =======
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xcake (0.6.11)
4
+ xcake (0.6.12)
5
5
  claide (~> 0.9.1)
6
6
  hooks (~> 0.4.1)
7
7
  molinillo
@@ -16,8 +16,8 @@ module Xcake
16
16
 
17
17
  @project = project
18
18
 
19
- @project.debug_configuration :Debug if @project.debug_configurations.count == 0
20
- @project.release_configuration :Release if @project.release_configurations.count == 0
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.debug_configurations.each do |b|
31
- target.debug_configuration(b.name)
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
@@ -1,3 +1,3 @@
1
1
  module Xcake
2
- VERSION = "0.6.11".freeze
2
+ VERSION = "0.6.12".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.11
4
+ version: 0.6.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Campbell