ssbx 0.1.3 → 0.1.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/README.md +1 -1
- data/exe/ssbx +1 -1
- data/lib/ssbx/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea618a7fa764a94771030e3738b78dc913159a5290a6f480f47e4f69d3e77904
|
|
4
|
+
data.tar.gz: 99bfc5e3cb999ecbd1e7cf56a730170cdf51c3cfb4ecb951f571184852ef7fc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c207b0d8f212142e9082658a81c076cc3ca1e5086d955da8a4b928ac7d71863de423fea7b66deadae570a919310f50ee49b3052d80f3291f4c8051ba31bedb9c
|
|
7
|
+
data.tar.gz: 809cd8a3024455d9ec92a17218d1566478fd13afe1219374dbe252c57ea72537b9403a6a994be43c9766da724cff3ac19885f8a33ebde7adad497eefb0e2a9c4
|
data/README.md
CHANGED
|
@@ -49,7 +49,7 @@ Then use `ssbx` to view or edit a file.
|
|
|
49
49
|
# Rotate passwords.
|
|
50
50
|
cp ~/.ssbx.yaml tmpconfig
|
|
51
51
|
# Edit ~/.ssbx.yaml to contain a new password.
|
|
52
|
-
ssbx -f f1.enc --config tmpconfig -o - | ssbx -f f2.enc
|
|
52
|
+
ssbx -f f1.enc --config tmpconfig -o - | ssbx -f f2.enc -i -
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
## Development
|
data/exe/ssbx
CHANGED
|
@@ -59,7 +59,7 @@ OptionParser.new do |opts|
|
|
|
59
59
|
CONFIG['user'] = u
|
|
60
60
|
end
|
|
61
61
|
|
|
62
|
-
opts.on('--
|
|
62
|
+
opts.on('-i', '--in=file', String, "Set the contents of this encrypted file to the given file.") do |f|
|
|
63
63
|
CONFIG['set'] = f
|
|
64
64
|
end
|
|
65
65
|
|
data/lib/ssbx/version.rb
CHANGED