pem 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -9
  3. data/bin/pem +0 -1
  4. data/lib/pem.rb +1 -0
  5. data/lib/pem/version.rb +1 -1
  6. metadata +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 37be2181a3bb07b38206ea74e40fd60a544bb733
4
- data.tar.gz: bd49b1c45de3beede3b606749b84cc6988852932
3
+ metadata.gz: 0a2dd98b8f43a07729d523ac19bc1a91bc792622
4
+ data.tar.gz: aae3861c166241215258488707163d9a4703c40a
5
5
  SHA512:
6
- metadata.gz: 660ba3d5d0ac341c61362947e8d511ba0ad23360cd3cd2e64a8a1bbcc486abd9bdc9e89bd3d89cae7d771e1e25506316af0648c7fd253c026d1220a742a617c7
7
- data.tar.gz: bfc3f3c89a212e8c80f8a42e250b5f1ed9e65acaf57b8b164a6db9ff913de21f84c837f7fa1ad3fa1981bf902743510d16b795814a472864259980f265f11570
6
+ metadata.gz: 8737781bea4e1a40143988a95143a7b9df8d6912129f4e78a63efaed9d20093e831e6fac390d00b2bcdc54bb4d9c83b3b2071a57d4467ced85b604ff0e158f34
7
+ data.tar.gz: 0a9cfaf0533db86692ad0cacf0769ae99d3bba96c0a32d67846808a972d4b46ef1151d5caf3d784d022894cfd4a60119d6dd7be979a0b31ba83af4a1ecf81a82
data/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  <a href="https://github.com/fastlane/deliver">deliver</a> &bull;
10
10
  <a href="https://github.com/fastlane/snapshot">snapshot</a> &bull;
11
11
  <a href="https://github.com/fastlane/frameit">frameit</a> &bull;
12
- <b>PEM</b> &bull;
12
+ <b>pem</b> &bull;
13
13
  <a href="https://github.com/fastlane/sigh">sigh</a> &bull;
14
14
  <a href="https://github.com/fastlane/produce">produce</a> &bull;
15
15
  <a href="https://github.com/fastlane/cert">cert</a> &bull;
@@ -17,7 +17,8 @@
17
17
  <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/gym">gym</a> &bull;
20
- <a href="https://github.com/fastlane/scan">scan</a>
20
+ <a href="https://github.com/fastlane/scan">scan</a> &bull;
21
+ <a href="https://github.com/fastlane/match">match</a>
21
22
  </p>
22
23
  -------
23
24
 
@@ -25,7 +26,7 @@
25
26
  <img src="assets/pem.png" height="110">
26
27
  </p>
27
28
 
28
- PEM
29
+ pem
29
30
  ============
30
31
 
31
32
  [![Twitter: @KauseFx](https://img.shields.io/badge/contact-@KrauseFx-blue.svg?style=flat)](https://twitter.com/KrauseFx)
@@ -36,7 +37,7 @@ PEM
36
37
 
37
38
  Tired of manually creating and maintaining your push notification profiles for your iOS apps? Tired of generating a `pem` file for your server?
38
39
 
39
- `PEM` does all that for, just by running `pem`.
40
+ `pem` does all that for, just by running `pem`.
40
41
 
41
42
  To automate iOS Provisioning profiles you can use [sigh](https://github.com/fastlane/sigh).
42
43
 
@@ -54,7 +55,7 @@ Get in contact with the developer on Twitter: [@KrauseFx](https://twitter.com/Kr
54
55
 
55
56
  -------
56
57
 
57
- <h5 align="center"><code>PEM</code> is part of <a href="https://fastlane.tools">fastlane</a>: connect all deployment tools into one streamlined workflow.</h5>
58
+ <h5 align="center"><code>pem</code> is part of <a href="https://fastlane.tools">fastlane</a>: connect all deployment tools into one streamlined workflow.</h5>
58
59
 
59
60
  # Features
60
61
  Well, it's actually just one: Generate the ```pem``` file for your server.
@@ -84,9 +85,9 @@ This does the following:
84
85
  - Downloads the certificate
85
86
  - Generates a new ```.pem``` file in the current working directory, which you can upload to your server
86
87
 
87
- ```PEM``` will never revoke your existing certificates.
88
+ ```pem``` will never revoke your existing certificates.
88
89
 
89
- 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`:
90
+ 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`:
90
91
 
91
92
  pem --force
92
93
 
@@ -119,10 +120,10 @@ Run `pem --help` to get a list of available environment variables.
119
120
 
120
121
  # How does it work?
121
122
 
122
- `PEM` uses [spaceship](https://spaceship.airforce) to communicate with the Apple Developer Portal to request a new push certificate for you.
123
+ `pem` uses [spaceship](https://spaceship.airforce) to communicate with the Apple Developer Portal to request a new push certificate for you.
123
124
 
124
125
  ## How is my password stored?
125
- ```PEM``` uses the [password manager](https://github.com/fastlane/credentials_manager) from `fastlane`. Take a look the [CredentialsManager README](https://github.com/fastlane/credentials_manager) for more information.
126
+ ```pem``` uses the [password manager](https://github.com/fastlane/credentials_manager) from `fastlane`. Take a look the [CredentialsManager README](https://github.com/fastlane/credentials_manager) for more information.
126
127
 
127
128
  # Tips
128
129
 
@@ -140,6 +141,7 @@ Run `pem --help` to get a list of available environment variables.
140
141
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
141
142
  - [`gym`](https://github.com/fastlane/gym): Building your iOS app has never been easier
142
143
  - [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
144
+ - [`match`](https://github.com/fastlane/match): Easily sync your certificates and profiles across your team using git
143
145
 
144
146
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
145
147
 
data/bin/pem CHANGED
@@ -4,7 +4,6 @@ $:.push File.expand_path("../../lib", __FILE__)
4
4
 
5
5
  require 'pem'
6
6
  require 'commander'
7
- require 'credentials_manager/password_manager'
8
7
  require 'credentials_manager/appfile_config'
9
8
  require 'pem/manager'
10
9
 
data/lib/pem.rb CHANGED
@@ -17,4 +17,5 @@ module PEM
17
17
  ENV['DELIVER_USER'] ||= ENV["PEM_USERNAME"]
18
18
 
19
19
  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
20
+ UI = FastlaneCore::UI
20
21
  end
data/lib/pem/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module PEM
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
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: 1.1.0
4
+ version: 1.1.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-12-06 00:00:00.000000000 Z
11
+ date: 2015-12-18 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.26.4
19
+ version: 0.30.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.26.4
29
+ version: 0.30.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.12.0
39
+ version: 0.18.1
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.12.0
49
+ version: 0.18.1
50
50
  - - "<"
51
51
  - !ruby/object:Gem::Version
52
52
  version: 1.0.0
@@ -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.6
214
+ rubygems_version: 2.4.0
215
215
  signing_key:
216
216
  specification_version: 4
217
217
  summary: Automatically generate and renew your push notification profiles