makr 1.3.0 → 1.4.0

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: 793a347a79b3f9207783dfc1b11cf957759e28b7
4
- data.tar.gz: a676f7f3942f3a0a488abb0d1fd2fc33f058a4f3
3
+ metadata.gz: f12612f7fe1778c6d918ac096e1858f2c8ed9349
4
+ data.tar.gz: be9973e8c2c93618d86864e71816c5d203cd916f
5
5
  SHA512:
6
- metadata.gz: 29fc1dc11a086c12a95c542e4567e096b5e96fba19de2863596b9928a222bf70d3b70683d6bd2e000f4dab72fd65c0421baa8c4f877bbf4d54bf9d7e8c33d428
7
- data.tar.gz: 88d8286d84d3126a34ae3752e3df95548325b61eef1e03004cc595f6ea558f9b630053f90b2523e4fce8acb02dd362a21d7957738e4949cd3fbcd23d5f14daba
6
+ metadata.gz: f88b01c0ff45449c2dc96ff9daea3e62ec2372b8ef0cafd1b1a8860b13f27ae8df740e339e21a85f9d58a79ead7f8b6dbfb52ea9b6908d86c831e6201f1d50ef
7
+ data.tar.gz: 2868f7c15853fe66ed10f747cce38ea028a1e0077b515a3bd0edf717f944c0c5abba3062361ae08fd8713c372d6dc4648e488276020b1ad556042e28e7cb38f6
@@ -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
- -exportFormat IPA \
62
- -exportProvisioningProfile "<%=ipa["profile"]%>" \
61
+ -exportOptionsPlist "<%=ipa["options"]%>" \
63
62
  -archivePath "$(ARCHIVES_PATH)/<%=archive["name"]%>.xcarchive" \
64
63
  -exportPath "$@"
65
64
 
@@ -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.1.
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
- profile: "profile-name" # Provisioning profile to use when exporting ipa.
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.3.0
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-02-27 00:00:00.000000000 Z
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.