kbsecret 0.3.1 → 0.3.2
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/bin/kbsecret +1 -1
- data/lib/kbsecret.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b8ffcee615b9d792bc9795ba8b1648b25aa63c6
|
|
4
|
+
data.tar.gz: fa6e71e4b793fefc16b31f5d9379d4ee61cd0dc5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac2ec7dcfcbdae062bcf888a08a1e94c6bf5296870d000a2a74135d0d26956585690a356cc44c2c59b0ce9552ba6ee0d7320928841d80d0b1894c06320088a36
|
|
7
|
+
data.tar.gz: 9229d1fb4b99b9eaa8701cae9c5f3ca30368b5f948f2fc60be613445e7a41808cf554522077acefe570b96de2f7f6ba1f072bb50d3a62c234a58e7b3b545c38a
|
data/bin/kbsecret
CHANGED
|
@@ -138,7 +138,7 @@ command = normalize(ARGV.shift || "help")
|
|
|
138
138
|
if builtin? command
|
|
139
139
|
send command, *ARGV
|
|
140
140
|
elsif external? command
|
|
141
|
-
|
|
141
|
+
exec expand(command), *ARGV
|
|
142
142
|
else
|
|
143
143
|
STDERR.puts "Fatal: Unknown command: '#{command}'."
|
|
144
144
|
end
|
data/lib/kbsecret.rb
CHANGED
|
@@ -11,7 +11,7 @@ require_relative "kbsecret/cli"
|
|
|
11
11
|
# The primary namespace for kbsecret.
|
|
12
12
|
module KBSecret
|
|
13
13
|
# kbsecret's current version
|
|
14
|
-
VERSION = "0.3.
|
|
14
|
+
VERSION = "0.3.2"
|
|
15
15
|
|
|
16
16
|
# fail very early if the user doesn't have keybase and KBFS running
|
|
17
17
|
raise Keybase::KeybaseNotRunningError unless Keybase.running?
|