pem 1.3.2 → 1.4.0
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 +2 -2
- data/lib/pem.rb +1 -0
- data/lib/pem/manager.rb +0 -2
- data/lib/pem/options.rb +4 -4
- data/lib/pem/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 363ff917f854267f720c0a78fea3bb8ca00ef3cd
|
4
|
+
data.tar.gz: 5f2b2eca718c8064aede7ad6677126bb3448a44d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b4691a404d88aa1d82770f4968cea646bb16d4c161fb877992c98d61e7e6662b40d64bbcdc0f638051e09b0626caa8e158b07c8faab516896bdbb8364fb7585
|
7
|
+
data.tar.gz: 56ed1adc11f886a42f6a3efd26fb56830d203608872784340d10a35aad0f59271377e992b07604256f7b57cf02c2058371cff620b29341b664dd4106096632f7
|
data/README.md
CHANGED
@@ -57,7 +57,7 @@ Get in contact with the developer on Twitter: [@FastlaneTools](https://twitter.c
|
|
57
57
|
|
58
58
|
-------
|
59
59
|
|
60
|
-
<h5 align="center"><code>pem</code> is part of <a href="https://fastlane.tools">fastlane</a>: The easiest way to automate
|
60
|
+
<h5 align="center"><code>pem</code> is part of <a href="https://fastlane.tools">fastlane</a>: The easiest way to automate beta deployments and releases for your iOS and Android apps.</h5>
|
61
61
|
|
62
62
|
# Features
|
63
63
|
Well, it's actually just one: Generate the ```pem``` file for your server.
|
@@ -140,7 +140,7 @@ Run `pem --help` to get a list of available environment variables.
|
|
140
140
|
|
141
141
|
## [`fastlane`](https://fastlane.tools) Toolchain
|
142
142
|
|
143
|
-
- [`fastlane`](https://fastlane.tools): The easiest way to automate
|
143
|
+
- [`fastlane`](https://fastlane.tools): The easiest way to automate beta deployments and releases for your iOS and Android apps
|
144
144
|
- [`deliver`](https://github.com/fastlane/fastlane/tree/master/deliver): Upload screenshots, metadata and your app to the App Store
|
145
145
|
- [`snapshot`](https://github.com/fastlane/fastlane/tree/master/snapshot): Automate taking localized screenshots of your iOS app on every device
|
146
146
|
- [`frameit`](https://github.com/fastlane/fastlane/tree/master/frameit): Quickly put your screenshots into the right device frames
|
data/lib/pem.rb
CHANGED
data/lib/pem/manager.rb
CHANGED
@@ -37,7 +37,6 @@ module PEM
|
|
37
37
|
UI.message "Successfully logged in"
|
38
38
|
end
|
39
39
|
|
40
|
-
# rubocop:disable Metrics/AbcSize
|
41
40
|
def create_certificate
|
42
41
|
UI.important "Creating a new push certificate for app '#{PEM.config[:app_identifier]}'."
|
43
42
|
|
@@ -81,7 +80,6 @@ module PEM
|
|
81
80
|
UI.message("PEM: ".green + Pathname.new(x509_cert_path).realpath.to_s)
|
82
81
|
return x509_cert_path
|
83
82
|
end
|
84
|
-
# rubocop:enable Metrics/AbcSize
|
85
83
|
|
86
84
|
def certificate
|
87
85
|
if PEM.config[:development]
|
data/lib/pem/options.rb
CHANGED
@@ -43,19 +43,19 @@ module PEM
|
|
43
43
|
short_option: "-b",
|
44
44
|
env_name: "PEM_TEAM_ID",
|
45
45
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
|
46
|
-
description: "The ID of your team if you're in multiple teams",
|
46
|
+
description: "The ID of your Developer Portal team if you're in multiple teams",
|
47
47
|
optional: true,
|
48
48
|
verify_block: proc do |value|
|
49
|
-
ENV["FASTLANE_TEAM_ID"] = value
|
49
|
+
ENV["FASTLANE_TEAM_ID"] = value.to_s
|
50
50
|
end),
|
51
51
|
FastlaneCore::ConfigItem.new(key: :team_name,
|
52
52
|
short_option: "-l",
|
53
53
|
env_name: "PEM_TEAM_NAME",
|
54
|
-
description: "The name of your team if you're in multiple teams",
|
54
|
+
description: "The name of your Developer Portal team if you're in multiple teams",
|
55
55
|
optional: true,
|
56
56
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
|
57
57
|
verify_block: proc do |value|
|
58
|
-
ENV["FASTLANE_TEAM_NAME"] = value
|
58
|
+
ENV["FASTLANE_TEAM_NAME"] = value.to_s
|
59
59
|
end),
|
60
60
|
FastlaneCore::ConfigItem.new(key: :p12_password,
|
61
61
|
short_option: "-p",
|
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.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.53.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 1.0.0
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.53.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 1.0.0
|
@@ -36,7 +36,7 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - ">="
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 0.
|
39
|
+
version: 0.36.2
|
40
40
|
- - "<"
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: 1.0.0
|
@@ -46,7 +46,7 @@ dependencies:
|
|
46
46
|
requirements:
|
47
47
|
- - ">="
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.
|
49
|
+
version: 0.36.2
|
50
50
|
- - "<"
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: 1.0.0
|
@@ -182,14 +182,14 @@ dependencies:
|
|
182
182
|
requirements:
|
183
183
|
- - "~>"
|
184
184
|
- !ruby/object:Gem::Version
|
185
|
-
version: 0.
|
185
|
+
version: 0.44.0
|
186
186
|
type: :development
|
187
187
|
prerelease: false
|
188
188
|
version_requirements: !ruby/object:Gem::Requirement
|
189
189
|
requirements:
|
190
190
|
- - "~>"
|
191
191
|
- !ruby/object:Gem::Version
|
192
|
-
version: 0.
|
192
|
+
version: 0.44.0
|
193
193
|
description: Automatically generate and renew your push notification profiles
|
194
194
|
email:
|
195
195
|
- pem@krausefx.com
|
@@ -226,7 +226,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
226
226
|
version: '0'
|
227
227
|
requirements: []
|
228
228
|
rubyforge_project:
|
229
|
-
rubygems_version: 2.
|
229
|
+
rubygems_version: 2.5.1
|
230
230
|
signing_key:
|
231
231
|
specification_version: 4
|
232
232
|
summary: Automatically generate and renew your push notification profiles
|