cert 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ad4345e1c0a821743a80a76c176b3a6bb5c347a1
4
- data.tar.gz: 34dcdfad6b1e60627d2af302a0e046f80794402e
3
+ metadata.gz: bc25d3796cfa86d507aa01c62859650c9c6efd1c
4
+ data.tar.gz: bbd5f8c43cf0233214694f2d0b6f4faa3974995c
5
5
  SHA512:
6
- metadata.gz: 7138bf0a51124ef2d1336137b1d77b0ce6412f5887b1224758ded2a9c7a37a98c53cec446177ec9db39dbdd0e30e82614dead9e0933b87cd24170116b1e6a739
7
- data.tar.gz: 6091ab9e84bd8986df4278a8006445153d92908c386ea3790876a97ae009edbdef5e794e410c33223e89e06c934f245ffd8d3d010ae40776f36c946c280f8c1c
6
+ metadata.gz: f259d2cc68ea50733eedd184cd47cadb016573a81289bd22aa3bbdb1b87d9481ce5ab77258daff92b602c2f49df002965186d70b8b7c75f8f3a565c224a4a172
7
+ data.tar.gz: 42605258256ab599933f4926e324835344e09576a896d37bdbe0912a02eb4b4487978e8cc68f8ff46dcd12806405a012d5bf069be05cb151c97a6e944afe6e2c
data/README.md CHANGED
@@ -13,7 +13,11 @@
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
15
  <b>cert</b> &bull;
16
- <a href="https://github.com/KrauseFx/codes">codes</a>
16
+ <a href="https://github.com/KrauseFx/codes">codes</a> &bull;
17
+ <a href="https://github.com/fastlane/spaceship">spaceship</a> &bull;
18
+ <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
19
+ <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
20
+ <a href="https://github.com/fastlane/gym">gym</a>
17
21
  </p>
18
22
  -------
19
23
 
@@ -112,11 +116,11 @@ Update your `Fastfile` to contain the following code:
112
116
  ```ruby
113
117
  lane :beta do
114
118
  cert
115
- sigh :force
119
+ sigh(force: true)
116
120
  end
117
121
  ```
118
122
 
119
- `:force` will make sure to re-generate the provisioning profile on each run.
123
+ `force: true` will make sure to re-generate the provisioning profile on each run.
120
124
  This will result in `sigh` always using the correct signing certificate, which is installed on the local machine.
121
125
 
122
126
 
@@ -128,13 +132,17 @@ This will result in `sigh` always using the correct signing certificate, which i
128
132
  ## [`fastlane`](https://fastlane.tools) Toolchain
129
133
 
130
134
  - [`fastlane`](https://fastlane.tools): Connect all deployment tools into one streamlined workflow
131
- - [`deliver`](https://github.com/KrauseFx/deliver): Upload screenshots, metadata and your app to the App Store using a single command
135
+ - [`deliver`](https://github.com/KrauseFx/deliver): Upload screenshots, metadata and your app to the App Store
132
136
  - [`snapshot`](https://github.com/KrauseFx/snapshot): Automate taking localized screenshots of your iOS app on every device
133
137
  - [`frameit`](https://github.com/KrauseFx/frameit): Quickly put your screenshots into the right device frames
134
138
  - [`PEM`](https://github.com/KrauseFx/pem): Automatically generate and renew your push notification profiles
135
139
  - [`sigh`](https://github.com/KrauseFx/sigh): Because you would rather spend your time building stuff than fighting provisioning
136
140
  - [`produce`](https://github.com/KrauseFx/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
137
141
  - [`codes`](https://github.com/KrauseFx/codes): Create promo codes for iOS Apps using the command line
142
+ - [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
143
+ - [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
144
+ - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
145
+ - [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
138
146
 
139
147
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
140
148
 
@@ -142,17 +150,9 @@ This will result in `sigh` always using the correct signing certificate, which i
142
150
  Download and install the [Provisioning Plugin](https://github.com/chockenberry/Provisioning) to easily preview provisioning profile files and certificates.
143
151
 
144
152
  # Need help?
145
- - If there is a technical problem with ```cert```, submit an issue.
146
- - I'm available for contract work - drop me an email: cert@krausefx.com
153
+ Please submit an issue on GitHub and provide information about your setup
147
154
 
148
155
  # License
149
156
  This project is licensed under the terms of the MIT license. See the LICENSE file.
150
157
 
151
- # Contributing
152
-
153
- 1. Create an issue to discuss about your idea
154
- 2. Fork it (https://github.com/KrauseFx/cert/fork)
155
- 3. Create your feature branch (`git checkout -b my-new-feature`)
156
- 4. Commit your changes (`git commit -am 'Add some feature'`)
157
- 5. Push to the branch (`git push origin my-new-feature`)
158
- 6. Create a new Pull Request
158
+ > This project and all fastlane tools are in no way affiliated with Apple Inc. This project is open source under the MIT license, which means you have full access to the source code and can modify it to fit your own needs. All fastlane tools run on your own computer or server, so your credentials or other sensitive information will never leave your own computer. You are responsible for how you use fastlane tools.
data/bin/cert CHANGED
@@ -21,8 +21,6 @@ class CertApplication
21
21
  program :help, 'GitHub', 'https://github.com/krausefx/cert'
22
22
  program :help_formatter, :compact
23
23
 
24
- always_trace!
25
-
26
24
  FastlaneCore::CommanderGenerator.new.generate(Cert::Options.available_options)
27
25
 
28
26
  command :create do |c|
@@ -36,6 +36,8 @@ module Cert
36
36
  Helper.log.info "Found the certificate #{certificate.id} (#{certificate.name}) which is installed on the local machine. Using this one.".green
37
37
 
38
38
  return path
39
+ else
40
+ Helper.log.info "Certificate #{certificate.id} (#{certificate.name}) can't be found on your local computer"
39
41
  end
40
42
  end
41
43
 
@@ -18,7 +18,7 @@ module Cert
18
18
  CredentialsManager::PasswordManager.shared_manager(value)
19
19
  end),
20
20
  FastlaneCore::ConfigItem.new(key: :team_id,
21
- short_option: "-t",
21
+ short_option: "-b",
22
22
  env_name: "CERT_TEAM_ID",
23
23
  description: "The ID of your team if you're in multiple teams",
24
24
  optional: true,
@@ -1,3 +1,3 @@
1
1
  module Cert
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
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: 0.3.0
4
+ version: 0.3.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-07-11 00:00:00.000000000 Z
11
+ date: 2015-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core