cert 1.2.0 → 1.2.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 +4 -4
- data/lib/cert/keychain_importer.rb +5 -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: 4cf06826d22f982778a2740de18028d20f1ed45a
|
4
|
+
data.tar.gz: c817719c45e235a5d363c864c1a5902a74ca0cec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ae9c75fbef4ed61babe5a89f8e99162f0a06584fd6c9cdd26e3c8f5f47bac1abe43ab314fa53fda23e1385a24b9d7f44a2c427c46f9c45cc7f32ea5099c75e4
|
7
|
+
data.tar.gz: cf7b0442742228c23d9f4d1e2ea9aad7fa89661020ab6113f18c006f56c842159eaec41129b32a1af2bdb95c9c7f1ef07d7b3eebe0d5c9f8260832e1af13c2a8
|
@@ -4,7 +4,11 @@ module Cert
|
|
4
4
|
raise "Could not find file '#{path}'".red unless File.exist?(path)
|
5
5
|
keychain = Cert.config[:keychain_path] || "#{Dir.home}/Library/Keychains/login.keychain"
|
6
6
|
|
7
|
-
|
7
|
+
command = "security import #{path.shellescape} -k '#{keychain}'"
|
8
|
+
command << " -T /usr/bin/codesign" # to not be asked for permission when running a tool like `gym`
|
9
|
+
command << " -T /usr/bin/security"
|
10
|
+
Helper.log.info command.yellow
|
11
|
+
Helper.log.info `#{command}`
|
8
12
|
end
|
9
13
|
end
|
10
14
|
end
|
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.2.
|
4
|
+
version: 1.2.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-11-
|
11
|
+
date: 2015-11-08 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.0
|
210
210
|
signing_key:
|
211
211
|
specification_version: 4
|
212
212
|
summary: Create new iOS code signing certificates
|