makr 1.4.2 → 1.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1fbdee1b1dfb024a7330153f5c52cfc72d4906c9
4
- data.tar.gz: 7da03e65a4bc443cf572842c0811b544e0c0470d
3
+ metadata.gz: 14473162bfee7fadaea5c97a7ec99633486fff31
4
+ data.tar.gz: 7a01f08cde93afbc42e700b5f4398fda5fb410dd
5
5
  SHA512:
6
- metadata.gz: 481242a5575acbcdcba1797a2525cbf1165cc37283fc42a8884770ad5d6668aa853da93e8d8169312880f1d3f0728b6768e3da1deacb9be3207668fb65cf4500
7
- data.tar.gz: f504aa5996f4cf420006c641f41509eae297250dec94a9f02c615305ba56e72ad88f2b26b45386b59506acd7add29a150b52ed14c8a5522d24e7e50fb2b67fc9
6
+ metadata.gz: cb5c359dc270ad5ac4289187ddde5afa316f9bc88bcdb0bf764bf2e70143def3b26bc1e76b4edf7e3d5e69061882a845b57c0cc4e34d44910c7c29072aa5c637
7
+ data.tar.gz: 9b07da91cb927b81124a672a0556d3c384f96d32dd14fb01faa8134d50b07f58cbb8c76b668975d28f93e1046938b943d94e50b8522cc1f6b06e3ea9390447cd
@@ -1,4 +1,4 @@
1
- # Generated by Makr 1.4.2
1
+ # Generated by Makr 1.4.3
2
2
  # https://github.com/willowtreeapps/Makr
3
3
 
4
4
  # Path for built products
@@ -54,7 +54,7 @@ $(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive:
54
54
  rm -rf $(TEMP_DIR)
55
55
 
56
56
  <% Array(archive["ipas"]).each do |ipa| -%>
57
- # Create <%=ipa["name"]%>/<%= archive["name"] %>.ipa
57
+ # Create <%=ipa["name"]%>/<%= archive["bundle_name"] %>.ipa
58
58
  $(IPAS_PATH)/<%=ipa["name"]%>: $(IPAS_PATH) $(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive
59
59
  xcodebuild -exportArchive \
60
60
  -exportOptionsPlist "<%=ipa["options"]%>" \
@@ -63,11 +63,11 @@ $(IPAS_PATH)/<%=ipa["name"]%>: $(IPAS_PATH) $(ARCHIVES_PATH)/<%=archive["name"]%
63
63
 
64
64
  <% Array(ipa["distributions"]).each do |distribution| -%>
65
65
  <% if distribution["type"] == "hockeyapp" -%>
66
- # Upload <%=ipa["name"]%>.ipa to <%=distribution["type"]%>
66
+ # Upload <%=ipa["name"]%>/<%=archive["bundle_name"]%>.ipa to <%=distribution["type"]%>
67
67
  distribute-<%= ipa["name"] %>-<%= distribution["name"] %>:
68
68
  curl https://rink.hockeyapp.net/api/2/apps/upload \
69
69
  -H 'X-HockeyAppToken: <%= distribution["api-token"] %>' \
70
- -F ipa=@'$(IPAS_PATH)/<%= ipa["name"] %>/<%= archive["name"] %>.ipa' \
70
+ -F ipa=@'$(IPAS_PATH)/<%= ipa["name"] %>/<%= archive["bundle_name"] %>.ipa' \
71
71
  -F notes='<%= distribution["notes"] %>' \
72
72
  -F notes_type='<%= distribution["notes_type"] %>' \
73
73
  -F notify='<%= distribution["notify"] %>' \
@@ -10,6 +10,7 @@
10
10
  device: "device" # Device to use for test. e.g. "iPad 2"
11
11
  archives: # List of all archives.
12
12
  -
13
+ bundle_name: "my-name" # Name of actual product, CFBundleName
13
14
  name: "my-name" # Name of archive. Run with make artifacts/archives/my-name.xcarchive
14
15
  scheme: "scheme" # Scheme to use during archive. Make sure it's shared.
15
16
  configuration: "configuration" # Configuration to use during archive.
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Carter
8
+ - Robert Thompson
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2016-01-22 00:00:00.000000000 Z
12
+ date: 2016-02-24 00:00:00.000000000 Z
12
13
  dependencies: []
13
14
  description: Makr reads the config.yaml file in the current directory to generate
14
15
  a Makefile capable of building, testing, and distributing Xcode projects and workspaces.