tagrity 0.2.15 → 0.2.16
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/Gemfile.lock +1 -1
- data/lib/tagrity/cli.rb +6 -0
- data/lib/tagrity/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: 021e64164031ab6fa1be2a1080f679730fba4f89c5c7d8de3e71a119d0984519
|
|
4
|
+
data.tar.gz: 3d70b525056a82b6b6586a3125dc84729e0aa1a48495a08be1bffa0f1e76cc18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cc1385017a29cea175198b53075b3fe98fea195424422714d91eaa18bef7b082209bbf456e34b9728e6b22a82f782880bcbf6f8124df32ba3e980e8348698b4
|
|
7
|
+
data.tar.gz: a2b24b69c5493d0fd7f80e6c5ef37c7433dc9b0d21bcfee1896574225a8a49fe18b5eca96c538c639946fffa4fc5ef7f2f16d7a44e543c5b7e0b568a4b4a3ae9
|
data/Gemfile.lock
CHANGED
data/lib/tagrity/cli.rb
CHANGED
|
@@ -3,9 +3,15 @@ require 'tagrity/commands/start'
|
|
|
3
3
|
require 'tagrity/commands/stop'
|
|
4
4
|
require 'tagrity/commands/status'
|
|
5
5
|
require 'tagrity/commands/logs'
|
|
6
|
+
require 'tagrity/version'
|
|
6
7
|
|
|
7
8
|
module Tagrity
|
|
8
9
|
class CLI < Thor
|
|
10
|
+
desc "version", "print tagrity version"
|
|
11
|
+
def version()
|
|
12
|
+
puts VERSION
|
|
13
|
+
end
|
|
14
|
+
|
|
9
15
|
desc "start", "Start watching pwd"
|
|
10
16
|
option :fg, type: :boolean, default: false, desc: "keep the tagrity process running in the foreground"
|
|
11
17
|
option :fresh, type: :boolean, default: false, desc: "index the whole codebase before watching the file system. This will be slow if the codebase is large."
|
data/lib/tagrity/version.rb
CHANGED