xcake 0.4.6 → 0.4.7

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: 9a2b55024b2dcb6e7af67252fc9d2369feb16e06
4
- data.tar.gz: 0fae68e3d09f8d0d1225f930f60212a364a7c8c6
3
+ metadata.gz: bae9db2e92c4ccdbda346b69c3c19969d8bde238
4
+ data.tar.gz: 28a62cf152096dd9917aa9946d3b906e4b216b01
5
5
  SHA512:
6
- metadata.gz: 11399bb3d05ec62158782f8ad32e8576ca78639e40caaf31c77640a46173eddef40dd8644dd68a283081509e51ed29875fe473471ada0363b4d6d8bc28a9679f
7
- data.tar.gz: 7c3a60a23b26c804b7d70437f77b6209489dc4ecfaf53d4e2bd8c345f075455d70642904cd365d2d485b7b4fa23539da1c590f1405c0748e3e35a35db87dac1a
6
+ metadata.gz: 969db59ccef395fd36c5a82d29d652b0d434066390c7de74e2ace1583aa7c0377a0462cc424e3384f5e5db0e987c479d32215aefe5b37ccc71b909855f9baab6
7
+ data.tar.gz: 5e510a0b557c0a24b1722044353e7232e71ae7722398e1a6f00e0f70190d8643cec2f73517305a06a28c5ea86ac90a97dcfd55ad155aab4c5c1ea5cf24a5fa35
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  v0.4.6
2
2
  ======
3
- - Sets correct configurations for each action in a scheme.
3
+ - Sets correct configurations for `analyse` and `archive` action for schemes.
4
+
5
+ v0.4.6
6
+ ======
7
+ - Sets correct configurations for each action for schemes.
4
8
 
5
9
  v0.4.5
6
10
  ======
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xcake (0.4.6)
4
+ xcake (0.4.7)
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.6"
2
+ VERSION = "0.4.7"
3
3
  end
@@ -65,12 +65,14 @@ module Xcake
65
65
  scheme.name = "#{target.name}-#{c.name}"
66
66
  @xcschememanagement['SuppressBuildableAutocreation'][target.uuid] = {"primary" => true}
67
67
 
68
+ unit_test_target = project.find_unit_test_target_for_target(target)
69
+ scheme.configure_with_targets(target, unit_test_target)
70
+
68
71
  scheme.test_action.build_configuration = c.name
69
72
  scheme.launch_action.build_configuration = c.name
70
73
  scheme.profile_action.build_configuration = c.name
71
-
72
- unit_test_target = project.find_unit_test_target_for_target(target)
73
- scheme.configure_with_targets(target, unit_test_target)
74
+ scheme.analyze_action.build_configuration = c.name
75
+ scheme.archive_action.build_configuration = c.name
74
76
 
75
77
  #TODO: We should structure this stuff out
76
78
  if unit_test_target then
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.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Campbell