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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d3fb1f2e0ff5006340509dd8fd5e12cfcfa29948
4
- data.tar.gz: 18d05eb2b6ed877db05c0caede1aeeb4506b5d50
3
+ metadata.gz: 363ff917f854267f720c0a78fea3bb8ca00ef3cd
4
+ data.tar.gz: 5f2b2eca718c8064aede7ad6677126bb3448a44d
5
5
  SHA512:
6
- metadata.gz: b5baa66437cc974ed0f32fde7ecdf3f6ea938b5bd821f74badde5f59c9936568aec3a06da70c44c922870fb09c9bd99615c19d2ba969e2af5ebc0f2b62ad39b4
7
- data.tar.gz: 43dc8420ef464e9f3c2b3bd142e50745234f676a2313b50f8e463310dc098786b17441efd3a8100235efb7c94f7269752546522a6b4d1b27359ea8bfde3dc079
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 building and releasing your iOS and Android apps.</h5>
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 building and releasing your iOS and Android apps
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
@@ -18,4 +18,5 @@ module PEM
18
18
 
19
19
  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
20
20
  UI = FastlaneCore::UI
21
+ ROOT = Pathname.new(File.expand_path('../..', __FILE__))
21
22
  end
@@ -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]
@@ -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",
@@ -1,3 +1,3 @@
1
1
  module PEM
2
- VERSION = "1.3.2"
2
+ VERSION = "1.4.0"
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.3.2
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-07-27 00:00:00.000000000 Z
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.43.1
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.43.1
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.26.2
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.26.2
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.38.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.38.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.4.5.1
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