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 +4 -4
- data/CHANGELOG.md +5 -1
- data/Gemfile.lock +1 -1
- data/lib/xcake/version.rb +1 -1
- data/lib/xcake/xcode/scheme_list.rb +5 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bae9db2e92c4ccdbda346b69c3c19969d8bde238
|
|
4
|
+
data.tar.gz: 28a62cf152096dd9917aa9946d3b906e4b216b01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 969db59ccef395fd36c5a82d29d652b0d434066390c7de74e2ace1583aa7c0377a0462cc424e3384f5e5db0e987c479d32215aefe5b37ccc71b909855f9baab6
|
|
7
|
+
data.tar.gz: 5e510a0b557c0a24b1722044353e7232e71ae7722398e1a6f00e0f70190d8643cec2f73517305a06a28c5ea86ac90a97dcfd55ad155aab4c5c1ea5cf24a5fa35
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/lib/xcake/version.rb
CHANGED
|
@@ -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
|
-
|
|
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
|