makr 1.4.0 → 1.4.1
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 +5 -5
- 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: 2957b0dc646df39b8fc10b326fc4b54fa62b28d4
|
|
4
|
+
data.tar.gz: 7827eac332bcd8aff9bb4cf190530f9a42345bbe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9ebcc1f395cc5e4cd78259cf05ed4fbcb835e1bffe7a8dc16e82e8e1b675924e50e994b61fd298a9be472f5d1ed505712edd7fc680710c891aff19fb86065b9
|
|
7
|
+
data.tar.gz: f7cfa70a05799fe635ea1d80e0907fa3dbfa862d45f6e3d821181a1a2d51b6ea0b7f27d8f7b9fdd7569f5283568b81e313d9e06af1983fa4b42e0c0745b30624
|
data/data/makr/Makefile.erb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Generated by Makr 1.
|
|
1
|
+
# Generated by Makr 1.4.1
|
|
2
2
|
# https://github.com/willowtreeapps/Makr
|
|
3
3
|
|
|
4
4
|
# Path for built products
|
|
@@ -28,7 +28,7 @@ ARCHIVES = <% config["archives"].each do |archive| %>$(ARCHIVES_PATH)/<%= archiv
|
|
|
28
28
|
# IPAs
|
|
29
29
|
IPAS = <% Array(config["archives"]).each do |archive| -%>
|
|
30
30
|
<% Array(archive["ipas"]).each do |ipa| -%>
|
|
31
|
-
$(IPAS_PATH)/<%= ipa["name"]
|
|
31
|
+
$(IPAS_PATH)/<%= ipa["name"] %> <% end -%><% end -%>
|
|
32
32
|
|
|
33
33
|
# Generates all IPAs
|
|
34
34
|
all: $(IPAS)
|
|
@@ -55,8 +55,8 @@ $(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive:
|
|
|
55
55
|
rm -rf $(TEMP_DIR)
|
|
56
56
|
|
|
57
57
|
<% Array(archive["ipas"]).each do |ipa| -%>
|
|
58
|
-
# Create <%=ipa["name"]%>.ipa
|
|
59
|
-
$(IPAS_PATH)/<%=ipa["name"]
|
|
58
|
+
# Create <%=ipa["name"]%>/<%= archive["name"] %>.ipa
|
|
59
|
+
$(IPAS_PATH)/<%=ipa["name"]%>: $(IPAS_PATH) $(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive
|
|
60
60
|
xcodebuild -exportArchive \
|
|
61
61
|
-exportOptionsPlist "<%=ipa["options"]%>" \
|
|
62
62
|
-archivePath "$(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive" \
|
|
@@ -68,7 +68,7 @@ $(IPAS_PATH)/<%=ipa["name"]%>.ipa: $(IPAS_PATH) $(ARCHIVES_PATH)/<%=archive["nam
|
|
|
68
68
|
distribute-<%= ipa["name"] %>-<%= distribution["name"] %>:
|
|
69
69
|
curl https://rink.hockeyapp.net/api/2/apps/upload \
|
|
70
70
|
-H 'X-HockeyAppToken: <%= distribution["api-token"] %>' \
|
|
71
|
-
-F ipa=@'$(IPAS_PATH)/<%= ipa["name"] %>.ipa' \
|
|
71
|
+
-F ipa=@'$(IPAS_PATH)/<%= ipa["name"] %>/<%= archive["name"] %>.ipa' \
|
|
72
72
|
-F notes='<%= distribution["notes"] %>' \
|
|
73
73
|
-F notes_type='<%= distribution["notes_type"] %>' \
|
|
74
74
|
-F notify='<%= distribution["notify"] %>' \
|
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.
|
|
4
|
+
version: 1.4.1
|
|
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-12-10 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.
|