localvault 1.12.0 → 1.12.1

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/lv +13 -0
  3. data/lib/localvault/version.rb +1 -1
  4. metadata +3 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ffea91e8b5b758be685a82b78154018889db3b8ece76a942f10879fe79e19d8
4
- data.tar.gz: 4b43e48d4913b88dffcb0ce18ddb819dd9470edde959cde7b8d4c50e86294e3d
3
+ metadata.gz: 5c37fd43d64105bf78e7501e458c98159958c4a6eca101d6716a3781b6bbb61f
4
+ data.tar.gz: 9f869cee27f7c118f91acf009d85cb0cef9204d9a99ada99b59939c63f7c2b22
5
5
  SHA512:
6
- metadata.gz: 73c0bb42f97afff36f09cce9a66e6ea9f37d8a25c8609a424f9c190cdaa3abc0dd6fb70765bdd2c4f0d5d113812a36f8a645dd557b4914c3620b48c5838b62d7
7
- data.tar.gz: 5766f8a512cebf5be3ceb4778f72fa2f5cf591b098e435d3a4cfa623912016c07bb8a3073f557ae4bf5764845802584750cc2434d472907474e81ac9bfdada27
6
+ metadata.gz: e503618d966e392d38a84969dae01d5355fcbccef921bad3f738a33b17139c71782e880f375756d865f1457b2c3fe23faf1175d65700caab1e5a3c1a5220e52d
7
+ data.tar.gz: 12bbf4acd6091c45afda3489035977e88169cce34e0313f51c8f75d8d35df71379fa6799af4e1d8e6ad252dc69971f3c41d09ee65c8aaf72ec83b9b748b54cc1
data/bin/lv ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Support both development (require_relative) and installed (load path) usage
4
+ begin
5
+ require_relative "../lib/localvault"
6
+ require_relative "../lib/localvault/cli"
7
+ rescue LoadError
8
+ require "localvault"
9
+ require "localvault/cli"
10
+ end
11
+
12
+ status = LocalVault::CLI.start(ARGV)
13
+ exit(status) if status.is_a?(Integer) && !status.zero?
@@ -1,3 +1,3 @@
1
1
  module LocalVault
2
- VERSION = "1.12.0"
2
+ VERSION = "1.12.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: localvault
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nauman Tariq
@@ -99,12 +99,14 @@ email:
99
99
  - nauman@intellecta.co
100
100
  executables:
101
101
  - localvault
102
+ - lv
102
103
  extensions: []
103
104
  extra_rdoc_files: []
104
105
  files:
105
106
  - LICENSE
106
107
  - README.md
107
108
  - bin/localvault
109
+ - bin/lv
108
110
  - lib/localvault.rb
109
111
  - lib/localvault/api_client.rb
110
112
  - lib/localvault/cli.rb