pem 1.0.0 → 1.0.1

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: a3c011bf11ba66d7cb532397bae99dee9418474f
4
- data.tar.gz: a1e44bf2769dc3925b3b65fb27689de143dc8eee
3
+ metadata.gz: 5f90383c8981ad1bee1e26fb7dfe92d6f3fc4c3d
4
+ data.tar.gz: 71539e4ed47202faeb56a527d3b3cfc0e18f0c68
5
5
  SHA512:
6
- metadata.gz: d878e339d20a5f489ed6374d8cedb1f99abe82073bb962dca9457b36e6252ab3fb8b2ccbd5816fcd5541a962fae208103fc2d00399a7638db4106f404c6e78da
7
- data.tar.gz: 889003d99ae45c758615988a2a4d7643421c9f1ecf2330aa8ddf6d15fbf3dd1cf5e436f906ee0bbfc87db71ed394d10d3ba9ac8de41345d47f7e1a715d5d15c9
6
+ metadata.gz: cf64d339728484691d4514b156b3545b4aae46a2299e2139ae1d31f57684be676d8fd68f78cdbec71298ff908eb9e71377e0bae74c6e6e8bd01b9cc91417bd93
7
+ data.tar.gz: 8bb8f3dc0f48032e041c4be7ba552f6ab0090e98b299f3de1bdd212ff03f67a716fc0b0636692f38ee2463c7543497c3e7cf461cac378dd9c46abebe07001de0
data/README.md CHANGED
@@ -12,17 +12,17 @@
12
12
  <b>PEM</b> &bull;
13
13
  <a href="https://github.com/KrauseFx/sigh">sigh</a> &bull;
14
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> &bull;
15
+ <a href="https://github.com/KrauseFx/cert">cert</a> &bull;
17
16
  <a href="https://github.com/fastlane/spaceship">spaceship</a> &bull;
18
17
  <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
19
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
20
- <a href="https://github.com/fastlane/gym">gym</a>
19
+ <a href="https://github.com/fastlane/gym">gym</a> &bull;
20
+ <a href="https://github.com/fastlane/scan">scan</a>
21
21
  </p>
22
22
  -------
23
23
 
24
24
  <p align="center">
25
- <img src="assets/pem.png">
25
+ <img src="assets/pem.png" height="110">
26
26
  </p>
27
27
 
28
28
  PEM
@@ -135,11 +135,11 @@ Run `pem --help` to get a list of available environment variables.
135
135
  - [`sigh`](https://github.com/KrauseFx/sigh): Because you would rather spend your time building stuff than fighting provisioning
136
136
  - [`produce`](https://github.com/KrauseFx/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
137
137
  - [`cert`](https://github.com/KrauseFx/cert): Automatically create and maintain iOS code signing certificates
138
- - [`codes`](https://github.com/KrauseFx/codes): Create promo codes for iOS Apps using the command line
139
138
  - [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
140
139
  - [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
141
140
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
142
141
  - [`gym`](https://github.com/fastlane/gym): Building your iOS app has never been easier
142
+ - [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
143
143
 
144
144
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
145
145
 
@@ -39,11 +39,21 @@ module PEM
39
39
  FastlaneCore::ConfigItem.new(key: :team_id,
40
40
  short_option: "-b",
41
41
  env_name: "PEM_TEAM_ID",
42
+ default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
42
43
  description: "The ID of your team if you're in multiple teams",
43
44
  optional: true,
44
45
  verify_block: proc do |value|
45
46
  ENV["FASTLANE_TEAM_ID"] = value
46
47
  end),
48
+ FastlaneCore::ConfigItem.new(key: :team_name,
49
+ short_option: "-l",
50
+ env_name: "PEM_TEAM_NAME",
51
+ description: "The name of your team if you're in multiple teams",
52
+ optional: true,
53
+ default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
54
+ verify_block: proc do |value|
55
+ ENV["FASTLANE_TEAM_NAME"] = value
56
+ end),
47
57
  FastlaneCore::ConfigItem.new(key: :p12_password,
48
58
  short_option: "-p",
49
59
  env_name: "PEM_P12_PASSWORD",
@@ -55,7 +65,7 @@ module PEM
55
65
  description: "The file name of the generated .pem file",
56
66
  optional: true),
57
67
  FastlaneCore::ConfigItem.new(key: :output_path,
58
- short_option: "-l",
68
+ short_option: "-e",
59
69
  env_name: "PEM_OUTPUT_PATH",
60
70
  description: "The path to a directory in which all certificates and private keys should be stored",
61
71
  default_value: ".")
@@ -1,3 +1,3 @@
1
1
  module PEM
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.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.0.0
4
+ version: 1.0.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-10-13 00:00:00.000000000 Z
11
+ date: 2015-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core
@@ -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.8
215
215
  signing_key:
216
216
  specification_version: 4
217
217
  summary: Automatically generate and renew your push notification profiles