cert 1.2.2 → 1.2.3

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: 5dc672f91a984de666467e09292a3b33f43932cb
4
- data.tar.gz: 7897eb987cb577b8d7714dd32dca080290183b10
3
+ metadata.gz: 6519e2032df42ff4eb1a019139096ec4e0949cc2
4
+ data.tar.gz: c09508b050cee02303ab8695dc44cca19189e896
5
5
  SHA512:
6
- metadata.gz: 86b735f69ae660166565c260f69bafcabb130c3b2463b35e24b5db9e9623b208bea9d44294a451f97e24096570cdf7cea235ea73fa33c11d73cb033fd13971b9
7
- data.tar.gz: 175cf3b8f3bd4bacc3427c898cdbfd5a3c6c33758aa7caf32183d87dd297077bfc77c4f7cb2cc21377358fbed8c97021c2fed789b320dadabccdaac6bc5bb90d
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]) || "#{Dir.home}/Library/Keychains/login.keychain"
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
@@ -1,3 +1,3 @@
1
1
  module Cert
2
- VERSION = "1.2.2"
2
+ VERSION = "1.2.3"
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: 1.2.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 00:00:00.000000000 Z
11
+ date: 2015-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core