pem 0.3.5 → 0.3.6
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 +9 -2
- data/lib/pem/developer_center.rb +2 -0
- data/lib/pem/signing_request.rb +2 -0
- data/lib/pem/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7cf459f7c70f9d8f7304c50dbeae9fd22811b883
|
4
|
+
data.tar.gz: 98817ce0180f6a904111ce67cd5b6bda91914da1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f520d6a7b3975bb7db83fe87d3a7a63d8a8b7cfdf32953dd7df983e93ea1a60823924150c738a3ff32377802cc021975b2170ae9dd969871aa596b4c6982a99
|
7
|
+
data.tar.gz: 9c603045a845e121c94e1730781dd62553f08dfd815fa93084656fbc9c7f294b452cc97288f04a488a821dd800d35573a187a11513f1d4083288d33b947e797d
|
data/README.md
CHANGED
@@ -11,7 +11,9 @@
|
|
11
11
|
<a href="https://github.com/KrauseFx/frameit">frameit</a> •
|
12
12
|
<b>PEM</b> •
|
13
13
|
<a href="https://github.com/KrauseFx/sigh">sigh</a> •
|
14
|
-
<a href="https://github.com/KrauseFx/produce">produce</a>
|
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
17
|
</p>
|
16
18
|
-------
|
17
19
|
|
@@ -79,7 +81,6 @@ This does the following:
|
|
79
81
|
- Downloads the certificate
|
80
82
|
- Generates a new ```.pem``` file in the current working directory, which you can upload to your server
|
81
83
|
|
82
|
-
|
83
84
|
```PEM``` will never revoke your existing certificates.
|
84
85
|
|
85
86
|
You can pass parameters like this:
|
@@ -90,6 +91,8 @@ If you want to generate a development certificate instead:
|
|
90
91
|
|
91
92
|
pem --development
|
92
93
|
|
94
|
+
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
95
|
+
|
93
96
|
## Environment Variables
|
94
97
|
In case you prefer environment variables:
|
95
98
|
|
@@ -118,6 +121,10 @@ There are 2 actions involved:
|
|
118
121
|
- [`frameit`](https://github.com/KrauseFx/frameit): Quickly put your screenshots into the right device frames
|
119
122
|
- [`sigh`](https://github.com/KrauseFx/sigh): Because you would rather spend your time building stuff than fighting provisioning
|
120
123
|
- [`produce`](https://github.com/KrauseFx/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
|
124
|
+
- [`cert`](https://github.com/KrauseFx/cert): Automatically create and maintain iOS code signing certificates
|
125
|
+
- [`codes`](https://github.com/KrauseFx/codes): Create promo codes for iOS Apps using the command line
|
126
|
+
|
127
|
+
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
121
128
|
|
122
129
|
## Use the 'Provisioning Quicklook plugin'
|
123
130
|
Download and install the [Provisioning Plugin](https://github.com/chockenberry/Provisioning).
|
data/lib/pem/developer_center.rb
CHANGED
@@ -21,6 +21,7 @@ module FastlaneCore
|
|
21
21
|
else
|
22
22
|
Helper.log.warn "Push for app '#{app_identifier}' is disabled. This has to change."
|
23
23
|
first(:css, '#pushEnabled').click
|
24
|
+
sleep 3 # this takes some time
|
24
25
|
end
|
25
26
|
|
26
27
|
Helper.log.warn "Creating push certificate for app '#{app_identifier}'."
|
@@ -69,6 +70,7 @@ module FastlaneCore
|
|
69
70
|
click_next # "Continue"
|
70
71
|
|
71
72
|
sleep 1
|
73
|
+
|
72
74
|
wait_for_elements(".file-input.validate")
|
73
75
|
wait_for_elements(".button.small.center.back")
|
74
76
|
|
data/lib/pem/signing_request.rb
CHANGED
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: 0.3.
|
4
|
+
version: 0.3.6
|
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-02-
|
11
|
+
date: 2015-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|