makr 1.3.0 → 1.4.0
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/data/makr/Makefile.erb +1 -2
- data/data/makr/config.yaml +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f12612f7fe1778c6d918ac096e1858f2c8ed9349
|
|
4
|
+
data.tar.gz: be9973e8c2c93618d86864e71816c5d203cd916f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f88b01c0ff45449c2dc96ff9daea3e62ec2372b8ef0cafd1b1a8860b13f27ae8df740e339e21a85f9d58a79ead7f8b6dbfb52ea9b6908d86c831e6201f1d50ef
|
|
7
|
+
data.tar.gz: 2868f7c15853fe66ed10f747cce38ea028a1e0077b515a3bd0edf717f944c0c5abba3062361ae08fd8713c372d6dc4648e488276020b1ad556042e28e7cb38f6
|
data/data/makr/Makefile.erb
CHANGED
|
@@ -58,8 +58,7 @@ $(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive:
|
|
|
58
58
|
# Create <%=ipa["name"]%>.ipa
|
|
59
59
|
$(IPAS_PATH)/<%=ipa["name"]%>.ipa: $(IPAS_PATH) $(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive
|
|
60
60
|
xcodebuild -exportArchive \
|
|
61
|
-
-
|
|
62
|
-
-exportProvisioningProfile "<%=ipa["profile"]%>" \
|
|
61
|
+
-exportOptionsPlist "<%=ipa["options"]%>" \
|
|
63
62
|
-archivePath "$(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive" \
|
|
64
63
|
-exportPath "$@"
|
|
65
64
|
|
data/data/makr/config.yaml
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
project: "project" # Name of project. Use this OR workspace.
|
|
6
6
|
workspace: "workspace" # Name of workspace. Use this OR project.
|
|
7
7
|
scheme: "scheme" # Scheme to use during test. Make sure it's shared.
|
|
8
|
-
platform: "platform" # Platform to use for test. e.g. iOS Simulator
|
|
9
|
-
os: "os" # OS to use for test. e.g. 8.
|
|
10
|
-
device: "device" # Device to use for test. e.g. iPad 2
|
|
8
|
+
platform: "platform" # Platform to use for test. e.g. "iOS Simulator"
|
|
9
|
+
os: "os" # OS to use for test. e.g. "8.3"
|
|
10
|
+
device: "device" # Device to use for test. e.g. "iPad 2"
|
|
11
11
|
archives: # List of all archives.
|
|
12
12
|
-
|
|
13
13
|
name: "my-name" # Name of archive. Run with make artifacts/archives/my-name.xcarchive
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
ipas: # List of all ipas to generate from parent archive
|
|
19
19
|
-
|
|
20
20
|
name: "my-name" # Name of ipa. Run with make artifacts/ipas/my-name.ipa
|
|
21
|
-
|
|
21
|
+
options: "my-options.plist" # Path to export options plist
|
|
22
22
|
distributions: # List of all distributions for the parent ipa
|
|
23
23
|
-
|
|
24
24
|
type: "hockeyapp" # Distribution type.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: makr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Carter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Makr reads the config.yaml file in the current directory to generate
|
|
14
14
|
a Makefile capable of building, testing, and distributing Xcode projects and workspaces.
|