cert 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/lib/cert/options.rb +10 -0
- data/lib/cert/runner.rb +1 -1
- data/lib/cert/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebbcfdb1bab4667d4f36ecc59d37cb4ae5f0a481
|
4
|
+
data.tar.gz: eec2ad460fcfcbf707c646d3daa47b666ad9b112
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2b7b1d57cf9b166c03f84947d4b0709758a2a67949711aef067a15cb63c57922978a0f7ec154560274c4f076165ead9ab6d48a6deaa5e8dfc7d5e304fdb87d2
|
7
|
+
data.tar.gz: fedcccfdd3ecaaab5b48369a792e326c284cc986f5c0aa3270f8ff4e49376b171945db37614b81d86d956f42d7cc8b5b9e53e5131d8829d96d5e8679bd70403e
|
data/README.md
CHANGED
@@ -9,20 +9,20 @@
|
|
9
9
|
<a href="https://github.com/KrauseFx/deliver">deliver</a> •
|
10
10
|
<a href="https://github.com/KrauseFx/snapshot">snapshot</a> •
|
11
11
|
<a href="https://github.com/KrauseFx/frameit">frameit</a> •
|
12
|
-
<a href="https://github.com/KrauseFx/
|
12
|
+
<a href="https://github.com/KrauseFx/PEM">PEM</a> •
|
13
13
|
<a href="https://github.com/KrauseFx/sigh">sigh</a> •
|
14
14
|
<a href="https://github.com/KrauseFx/produce">produce</a> •
|
15
15
|
<b>cert</b> •
|
16
|
-
<a href="https://github.com/KrauseFx/codes">codes</a> •
|
17
16
|
<a href="https://github.com/fastlane/spaceship">spaceship</a> •
|
18
17
|
<a href="https://github.com/fastlane/pilot">pilot</a> •
|
19
18
|
<a href="https://github.com/fastlane/boarding">boarding</a> •
|
20
|
-
<a href="https://github.com/fastlane/gym">gym</a>
|
19
|
+
<a href="https://github.com/fastlane/gym">gym</a> •
|
20
|
+
<a href="https://github.com/fastlane/scan">scan</a>
|
21
21
|
</p>
|
22
22
|
-------
|
23
23
|
|
24
24
|
<p align="center">
|
25
|
-
|
25
|
+
<img src="assets/cert.png" height="110">
|
26
26
|
</p>
|
27
27
|
|
28
28
|
cert
|
@@ -133,11 +133,11 @@ This will result in `sigh` always using the correct signing certificate, which i
|
|
133
133
|
- [`PEM`](https://github.com/KrauseFx/pem): Automatically generate and renew your push notification profiles
|
134
134
|
- [`sigh`](https://github.com/KrauseFx/sigh): Because you would rather spend your time building stuff than fighting provisioning
|
135
135
|
- [`produce`](https://github.com/KrauseFx/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
|
136
|
-
- [`codes`](https://github.com/KrauseFx/codes): Create promo codes for iOS Apps using the command line
|
137
136
|
- [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
|
138
137
|
- [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
|
139
138
|
- [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
|
140
139
|
- [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
|
140
|
+
- [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
|
141
141
|
|
142
142
|
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
143
143
|
|
data/lib/cert/options.rb
CHANGED
@@ -18,11 +18,21 @@ module Cert
|
|
18
18
|
FastlaneCore::ConfigItem.new(key: :team_id,
|
19
19
|
short_option: "-b",
|
20
20
|
env_name: "CERT_TEAM_ID",
|
21
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
|
21
22
|
description: "The ID of your team if you're in multiple teams",
|
22
23
|
optional: true,
|
23
24
|
verify_block: proc do |value|
|
24
25
|
ENV["FASTLANE_TEAM_ID"] = value
|
25
26
|
end),
|
27
|
+
FastlaneCore::ConfigItem.new(key: :team_name,
|
28
|
+
short_option: "-l",
|
29
|
+
env_name: "CERT_TEAM_NAME",
|
30
|
+
description: "The name of your team if you're in multiple teams",
|
31
|
+
optional: true,
|
32
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
|
33
|
+
verify_block: proc do |value|
|
34
|
+
ENV["FASTLANE_TEAM_NAME"] = value
|
35
|
+
end),
|
26
36
|
FastlaneCore::ConfigItem.new(key: :output_path,
|
27
37
|
short_option: "-o",
|
28
38
|
env_name: "CERT_OUTPUT_PATH",
|
data/lib/cert/runner.rb
CHANGED
@@ -8,7 +8,7 @@ module Cert
|
|
8
8
|
end
|
9
9
|
|
10
10
|
def run
|
11
|
-
FastlaneCore::PrintTable.print_values(config: Cert.config, hide_keys: [], title: "Summary")
|
11
|
+
FastlaneCore::PrintTable.print_values(config: Cert.config, hide_keys: [], title: "Summary for cert #{Cert::VERSION}")
|
12
12
|
|
13
13
|
Helper.log.info "Starting login with user '#{Cert.config[:username]}'"
|
14
14
|
Spaceship.login(Cert.config[:username], nil)
|
data/lib/cert/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.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: 2015-10-
|
11
|
+
date: 2015-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|
@@ -206,7 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
206
|
version: '0'
|
207
207
|
requirements: []
|
208
208
|
rubyforge_project:
|
209
|
-
rubygems_version: 2.4.
|
209
|
+
rubygems_version: 2.4.8
|
210
210
|
signing_key:
|
211
211
|
specification_version: 4
|
212
212
|
summary: Create new iOS code signing certificates
|