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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4183cb62a72696d21c652ccf43f083167a6da7c0
4
- data.tar.gz: e28488174cc12157b3a3cd8ab75cd4e95edefc83
3
+ metadata.gz: 7cf459f7c70f9d8f7304c50dbeae9fd22811b883
4
+ data.tar.gz: 98817ce0180f6a904111ce67cd5b6bda91914da1
5
5
  SHA512:
6
- metadata.gz: 343d67fc85b9045d01220881913ed626302ff96fe5380a7a92f4423ca232436b1a4c52ecf86ca1ac59e835980811ac419797443c8853a50c1a73df5b515b9d37
7
- data.tar.gz: aaae7b545e4822f17b8a8c2b96c3829f142dace7b4a4b6a2f9cd4d1c278528c42cd3a45703049d4761ac7693c0354302ebe80eb82a46cf1d0d585fd455019964
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> &bull;
12
12
  <b>PEM</b> &bull;
13
13
  <a href="https://github.com/KrauseFx/sigh">sigh</a> &bull;
14
- <a href="https://github.com/KrauseFx/produce">produce</a>
14
+ <a href="https://github.com/KrauseFx/produce">produce</a> &bull;
15
+ <a href="https://github.com/KrauseFx/cert">cert</a> &bull;
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).
@@ -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
 
@@ -1,3 +1,5 @@
1
+ require 'openssl'
2
+
1
3
  module PEM
2
4
  class SigningRequest
3
5
  def self.get_path
@@ -1,3 +1,3 @@
1
1
  module PEM
2
- VERSION = "0.3.5"
2
+ VERSION = "0.3.6"
3
3
  end
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.5
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-19 00:00:00.000000000 Z
11
+ date: 2015-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core