pem 1.0.0 → 1.0.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/README.md +5 -5
- data/lib/pem/options.rb +11 -1
- data/lib/pem/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f90383c8981ad1bee1e26fb7dfe92d6f3fc4c3d
|
|
4
|
+
data.tar.gz: 71539e4ed47202faeb56a527d3b3cfc0e18f0c68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf64d339728484691d4514b156b3545b4aae46a2299e2139ae1d31f57684be676d8fd68f78cdbec71298ff908eb9e71377e0bae74c6e6e8bd01b9cc91417bd93
|
|
7
|
+
data.tar.gz: 8bb8f3dc0f48032e041c4be7ba552f6ab0090e98b299f3de1bdd212ff03f67a716fc0b0636692f38ee2463c7543497c3e7cf461cac378dd9c46abebe07001de0
|
data/README.md
CHANGED
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
<b>PEM</b> •
|
|
13
13
|
<a href="https://github.com/KrauseFx/sigh">sigh</a> •
|
|
14
14
|
<a href="https://github.com/KrauseFx/produce">produce</a> •
|
|
15
|
-
<a href="https://github.com/KrauseFx/cert">cert</a>
|
|
16
|
-
<a href="https://github.com/KrauseFx/codes">codes</a> •
|
|
15
|
+
<a href="https://github.com/KrauseFx/cert">cert</a> •
|
|
17
16
|
<a href="https://github.com/fastlane/spaceship">spaceship</a> •
|
|
18
17
|
<a href="https://github.com/fastlane/pilot">pilot</a> •
|
|
19
18
|
<a href="https://github.com/fastlane/boarding">boarding</a> •
|
|
20
|
-
<a href="https://github.com/fastlane/gym">gym</a>
|
|
19
|
+
<a href="https://github.com/fastlane/gym">gym</a> •
|
|
20
|
+
<a href="https://github.com/fastlane/scan">scan</a>
|
|
21
21
|
</p>
|
|
22
22
|
-------
|
|
23
23
|
|
|
24
24
|
<p align="center">
|
|
25
|
-
|
|
25
|
+
<img src="assets/pem.png" height="110">
|
|
26
26
|
</p>
|
|
27
27
|
|
|
28
28
|
PEM
|
|
@@ -135,11 +135,11 @@ Run `pem --help` to get a list of available environment variables.
|
|
|
135
135
|
- [`sigh`](https://github.com/KrauseFx/sigh): Because you would rather spend your time building stuff than fighting provisioning
|
|
136
136
|
- [`produce`](https://github.com/KrauseFx/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
|
|
137
137
|
- [`cert`](https://github.com/KrauseFx/cert): Automatically create and maintain iOS code signing certificates
|
|
138
|
-
- [`codes`](https://github.com/KrauseFx/codes): Create promo codes for iOS Apps using the command line
|
|
139
138
|
- [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
|
|
140
139
|
- [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
|
|
141
140
|
- [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
|
|
142
141
|
- [`gym`](https://github.com/fastlane/gym): Building your iOS app has never been easier
|
|
142
|
+
- [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
|
|
143
143
|
|
|
144
144
|
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
|
145
145
|
|
data/lib/pem/options.rb
CHANGED
|
@@ -39,11 +39,21 @@ module PEM
|
|
|
39
39
|
FastlaneCore::ConfigItem.new(key: :team_id,
|
|
40
40
|
short_option: "-b",
|
|
41
41
|
env_name: "PEM_TEAM_ID",
|
|
42
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
|
|
42
43
|
description: "The ID of your team if you're in multiple teams",
|
|
43
44
|
optional: true,
|
|
44
45
|
verify_block: proc do |value|
|
|
45
46
|
ENV["FASTLANE_TEAM_ID"] = value
|
|
46
47
|
end),
|
|
48
|
+
FastlaneCore::ConfigItem.new(key: :team_name,
|
|
49
|
+
short_option: "-l",
|
|
50
|
+
env_name: "PEM_TEAM_NAME",
|
|
51
|
+
description: "The name of your team if you're in multiple teams",
|
|
52
|
+
optional: true,
|
|
53
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
|
|
54
|
+
verify_block: proc do |value|
|
|
55
|
+
ENV["FASTLANE_TEAM_NAME"] = value
|
|
56
|
+
end),
|
|
47
57
|
FastlaneCore::ConfigItem.new(key: :p12_password,
|
|
48
58
|
short_option: "-p",
|
|
49
59
|
env_name: "PEM_P12_PASSWORD",
|
|
@@ -55,7 +65,7 @@ module PEM
|
|
|
55
65
|
description: "The file name of the generated .pem file",
|
|
56
66
|
optional: true),
|
|
57
67
|
FastlaneCore::ConfigItem.new(key: :output_path,
|
|
58
|
-
short_option: "-
|
|
68
|
+
short_option: "-e",
|
|
59
69
|
env_name: "PEM_OUTPUT_PATH",
|
|
60
70
|
description: "The path to a directory in which all certificates and private keys should be stored",
|
|
61
71
|
default_value: ".")
|
data/lib/pem/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-10-
|
|
11
|
+
date: 2015-10-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -211,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
211
211
|
version: '0'
|
|
212
212
|
requirements: []
|
|
213
213
|
rubyforge_project:
|
|
214
|
-
rubygems_version: 2.4.
|
|
214
|
+
rubygems_version: 2.4.8
|
|
215
215
|
signing_key:
|
|
216
216
|
specification_version: 4
|
|
217
217
|
summary: Automatically generate and renew your push notification profiles
|