cert 1.2.2 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cert/keychain_importer.rb +1 -1
- data/lib/cert/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6519e2032df42ff4eb1a019139096ec4e0949cc2
|
4
|
+
data.tar.gz: c09508b050cee02303ab8695dc44cca19189e896
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47d173a13e6020003f6f90c6d01ff658695f0d1e7bb6d34a6cdffef0a3c9ca8d67021b1753b1c7df740410106430109f3eb75b751ae0bc764f50498a64009178
|
7
|
+
data.tar.gz: 025d60234bf58f70e5734c01f4d5a5fe683956699cc3c9e6e3e05e5cab9457ce0e583ab10486277ac77b870ed734be2ac78aa6e62178fb9a01c3f64b2ebb3bac
|
@@ -2,7 +2,7 @@ module Cert
|
|
2
2
|
class KeychainImporter
|
3
3
|
def self.import_file(path)
|
4
4
|
raise "Could not find file '#{path}'".red unless File.exist?(path)
|
5
|
-
keychain = File.expand_path(Cert.config[:keychain_path]
|
5
|
+
keychain = File.expand_path(Cert.config[:keychain_path] || "#{Dir.home}/Library/Keychains/login.keychain")
|
6
6
|
|
7
7
|
command = "security import #{path.shellescape} -k '#{keychain}'"
|
8
8
|
command << " -T /usr/bin/codesign" # to not be asked for permission when running a tool like `gym`
|
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.3
|
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-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|