kbsecret 0.3.3 → 0.3.4
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-dump-fields +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: 9e427bad01fa405bb3dcb4f9b22989880e5f5146
|
|
4
|
+
data.tar.gz: 68fe7b2649c0bf8db72980fc525d713c55e00428
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5fa72f2cf3aaf7209b5283f30e6a2be86978ffc72560e611a5b7bc90deca393cf73cf8f443613a19e015948e936e6e223b4d1795528fd2b7707de04bcc888ce0
|
|
7
|
+
data.tar.gz: ff52763b60b00e78c92eaba9f71a76219544c3b6e08de8d64b03999f772c3e454c1f79e4df10f7a5fe2ade302e5c1bd7c2dac291bd01d7efb3359c9a9763cc94
|
data/bin/kbsecret-dump-fields
CHANGED
|
@@ -14,7 +14,7 @@ opts = Slop.parse suppress_errors: true do |o|
|
|
|
14
14
|
|
|
15
15
|
o.string "-s", "--session", "the session name", default: :default
|
|
16
16
|
o.bool "-x", "--terse", "output in field:value format"
|
|
17
|
-
o.
|
|
17
|
+
o.string "-i", "--ifs", "separate terse pairs with this string", default: ":"
|
|
18
18
|
|
|
19
19
|
o.on "-h", "--help" do
|
|
20
20
|
puts o
|
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.4"
|
|
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?
|