bkblz 0.1.9 → 0.1.10
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/bkblz +2 -1
- data/lib/bkblz/version.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: e32fc4c015090ea1808daf2fa0bf5d6f69ee6362
|
|
4
|
+
data.tar.gz: 39ab9e46da28e38ac44080d6b11b480d1d940ef5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6454e5cc445133352b0b8c9b30e77b39aeffac724db4c49fe21fc7c9e45fbc6893b65b607ab2686cfbd36ce1b014da943fff0c289986b2ad3c0797c644fbe4c
|
|
7
|
+
data.tar.gz: 2ed424c4099bc450e7adc719e1aa3ce26cbc8d7929cc6618e83719a73dd17d8f10140cbcd8185785f28e004e71430cf5649084d4ef56fcf0ee5777edaa2310c6
|
data/bin/bkblz
CHANGED
|
@@ -218,7 +218,8 @@ module Bkblz
|
|
|
218
218
|
class Cli < Thor
|
|
219
219
|
include Helper
|
|
220
220
|
|
|
221
|
-
class_option :config, :desc => "path to a yml config file", :aliases => ["-c"]
|
|
221
|
+
class_option :config, :desc => "path to a yml config file", :aliases => ["-c"],
|
|
222
|
+
:default => ::File.expand_path('~/etc/bkblz/bkblz.yml')
|
|
222
223
|
|
|
223
224
|
desc "bucket SUBCOMMAND ...ARGS", "manage backblaze buckets"
|
|
224
225
|
subcommand "bucket", Bucket
|
data/lib/bkblz/version.rb
CHANGED