xcake 0.4.5 → 0.4.6

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: e36f60e90b23cf3d83bdf1a3606055a56c2ab566
4
- data.tar.gz: e55f7b871a10b8737745de2f163ab79ee32d7b2d
3
+ metadata.gz: 9a2b55024b2dcb6e7af67252fc9d2369feb16e06
4
+ data.tar.gz: 0fae68e3d09f8d0d1225f930f60212a364a7c8c6
5
5
  SHA512:
6
- metadata.gz: 18cf3b0d3c4b606f0b81eaacc1f540f5719a1fac67d77534eb78cd8b044a3420e62cdc2434e6279bf3ef45e1745fc8f80447b854b7924e57f1e7d9fb55944826
7
- data.tar.gz: 9d2f7513c97cdba147dc996b7839be4cd77f4678670a4d9502d9617adc12a38df9de40bff014edda6ffd35ce34ad6157da6cb365a81b406bc48e597220c87ee9
6
+ metadata.gz: 11399bb3d05ec62158782f8ad32e8576ca78639e40caaf31c77640a46173eddef40dd8644dd68a283081509e51ed29875fe473471ada0363b4d6d8bc28a9679f
7
+ data.tar.gz: 7c3a60a23b26c804b7d70437f77b6209489dc4ecfaf53d4e2bd8c345f075455d70642904cd365d2d485b7b4fa23539da1c590f1405c0748e3e35a35db87dac1a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ v0.4.6
2
+ ======
3
+ - Sets correct configurations for each action in a scheme.
4
+
1
5
  v0.4.5
2
6
  ======
3
7
  - Correctly configures schemes for Applications; It should now be possible to
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xcake (0.4.5)
4
+ xcake (0.4.6)
5
5
  claide (~> 0.9.1)
6
6
  hooks (~> 0.4.1)
7
7
  tty (~> 0.3.2)
data/lib/xcake/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Xcake
2
- VERSION = "0.4.5"
2
+ VERSION = "0.4.6"
3
3
  end
@@ -63,9 +63,12 @@ module Xcake
63
63
  scheme = Scheme.new
64
64
 
65
65
  scheme.name = "#{target.name}-#{c.name}"
66
- scheme.add_build_target(target)
67
66
  @xcschememanagement['SuppressBuildableAutocreation'][target.uuid] = {"primary" => true}
68
67
 
68
+ scheme.test_action.build_configuration = c.name
69
+ scheme.launch_action.build_configuration = c.name
70
+ scheme.profile_action.build_configuration = c.name
71
+
69
72
  unit_test_target = project.find_unit_test_target_for_target(target)
70
73
  scheme.configure_with_targets(target, unit_test_target)
71
74
 
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.4.5
4
+ version: 0.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Campbell