pem 0.5.3 → 0.5.4
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 +1 -1
- data/lib/pem/developer_center.rb +1 -1
- data/lib/pem/options.rb +3 -2
- data/lib/pem/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 280a3e4e615a203191f469dcad2982971be0b92e
|
4
|
+
data.tar.gz: 3b36346fc731f6ea4bb9a628fb8b82a08f00135f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f6616e5016b32aefe645361398278f3631918291b1a2ab52df485e8dce7eca283ec6a5815d67ce300236403a44f014a884879a9e7ef19a6e11adfae4d8a5349
|
7
|
+
data.tar.gz: 28cdff307fb1590b4363fdb808fd5ba49072ea4d9632e13309058c06907962e327dcc9c8b65cfc02a98af3aacfcf1604eb4d15d33b6d6612f5805c74be5fd62d
|
data/README.md
CHANGED
@@ -84,7 +84,7 @@ This does the following:
|
|
84
84
|
|
85
85
|
```PEM``` will never revoke your existing certificates.
|
86
86
|
|
87
|
-
If you already have a push certificate enabled, which is active for at least
|
87
|
+
If you already have a push certificate enabled, which is active for at least 30 more days, `PEM` will not create a new certificate. If you still want to create one, use the `force`:
|
88
88
|
|
89
89
|
pem --force
|
90
90
|
|
data/lib/pem/developer_center.rb
CHANGED
@@ -26,7 +26,7 @@ module PEM
|
|
26
26
|
end
|
27
27
|
|
28
28
|
if has_actual_cert and not PEM.config[:force]
|
29
|
-
Helper.log.info "You already have a push certificate, which is active for more than
|
29
|
+
Helper.log.info "You already have a push certificate, which is active for more than 30 more days. No need to create a new one".green
|
30
30
|
Helper.log.info "If you still want to create a new one, use the --force option when running PEM.".green
|
31
31
|
false
|
32
32
|
else
|
data/lib/pem/options.rb
CHANGED
@@ -22,8 +22,9 @@ module PEM
|
|
22
22
|
default_value: false),
|
23
23
|
FastlaneCore::ConfigItem.new(key: :force,
|
24
24
|
env_name: "PEM_FORCE",
|
25
|
-
description: "Create a new push certificate, even if the current one is active for
|
26
|
-
is_string: false
|
25
|
+
description: "Create a new push certificate, even if the current one is active for 30 more days",
|
26
|
+
is_string: false,
|
27
|
+
default_value: false),
|
27
28
|
FastlaneCore::ConfigItem.new(key: :app_identifier,
|
28
29
|
short_option: "-a",
|
29
30
|
env_name: "PEM_APP_IDENTIFIER",
|
data/lib/pem/version.rb
CHANGED