makr 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/data/makr/Makefile.erb +5 -5
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f12612f7fe1778c6d918ac096e1858f2c8ed9349
4
- data.tar.gz: be9973e8c2c93618d86864e71816c5d203cd916f
3
+ metadata.gz: 2957b0dc646df39b8fc10b326fc4b54fa62b28d4
4
+ data.tar.gz: 7827eac332bcd8aff9bb4cf190530f9a42345bbe
5
5
  SHA512:
6
- metadata.gz: f88b01c0ff45449c2dc96ff9daea3e62ec2372b8ef0cafd1b1a8860b13f27ae8df740e339e21a85f9d58a79ead7f8b6dbfb52ea9b6908d86c831e6201f1d50ef
7
- data.tar.gz: 2868f7c15853fe66ed10f747cce38ea028a1e0077b515a3bd0edf717f944c0c5abba3062361ae08fd8713c372d6dc4648e488276020b1ad556042e28e7cb38f6
6
+ metadata.gz: f9ebcc1f395cc5e4cd78259cf05ed4fbcb835e1bffe7a8dc16e82e8e1b675924e50e994b61fd298a9be472f5d1ed505712edd7fc680710c891aff19fb86065b9
7
+ data.tar.gz: f7cfa70a05799fe635ea1d80e0907fa3dbfa862d45f6e3d821181a1a2d51b6ea0b7f27d8f7b9fdd7569f5283568b81e313d9e06af1983fa4b42e0c0745b30624
@@ -1,4 +1,4 @@
1
- # Generated by Makr 1.3.0
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"] %>.ipa <% end -%><% end -%>
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"]%>.ipa: $(IPAS_PATH) $(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive
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.0
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-23 00:00:00.000000000 Z
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.