tagrity 0.2.8 → 0.2.9
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/README.md +7 -6
- data/lib/tagrity/config_file.rb +1 -1
- data/lib/tagrity/version.rb +1 -1
- data/sample_config.yml +3 -3
- 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: 549eec0328ebf62ba6671dccf3a0cba4fb17f42840f025202631dc08e9e68ea1
|
|
4
|
+
data.tar.gz: e1294dcca926174cbb17d2f30010701ff57acd8f1979b8b7b45a7adc767d577c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 732666dc83957b70f060ac20ee7e5b615dd48e2b65e42274d7b220d65f6d824a1fa8aa590ee95a5af221bfc9470d98a24142fa3383026fd09501460ffbec8dd2
|
|
7
|
+
data.tar.gz: 2c3bab8727ce1b884f9c20ea295d639df2136a75712abc9fc45aa1b06e354ed8ad521a88b1668dd78ed5fc953138488e6d6f556617ce0745227dd680202a8f48
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -16,7 +16,7 @@ $ gem install tagrity
|
|
|
16
16
|
tagrity start
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
That's it! It will monitor pwd and
|
|
19
|
+
That's it! It will monitor pwd and index any files which change. Check out [Configuration](#configuration) to restrict which files get indexed.
|
|
20
20
|
|
|
21
21
|
To stop watching pwd, use
|
|
22
22
|
|
|
@@ -78,11 +78,11 @@ extensions_blacklist: [erb, html, txt]
|
|
|
78
78
|
# how to integrate with git
|
|
79
79
|
# git_strategy: TRACKED | IGNORED | NA
|
|
80
80
|
# TRACKED: only index files tracked by git
|
|
81
|
-
# IGNORED:
|
|
81
|
+
# IGNORED: only index files which are not ignored by git
|
|
82
82
|
# NA: don't use git, index all files under pwd
|
|
83
83
|
#
|
|
84
|
-
# Default:
|
|
85
|
-
git_strategy:
|
|
84
|
+
# Default: NA
|
|
85
|
+
git_strategy: IGNORED
|
|
86
86
|
|
|
87
87
|
# which paths (relative to pwd) to ignore
|
|
88
88
|
# It's usually better to avoid this since tagrity integrates with git by
|
|
@@ -141,8 +141,9 @@ Usage:
|
|
|
141
141
|
tagrity logs
|
|
142
142
|
|
|
143
143
|
Options:
|
|
144
|
-
[-n=N]
|
|
145
|
-
|
|
144
|
+
[-n=N] # the number of log lines to print
|
|
145
|
+
# Default: 10
|
|
146
|
+
[--debug], [--no-debug] # if debug logs be printed too
|
|
146
147
|
|
|
147
148
|
Print the logs for pwd
|
|
148
149
|
```
|
data/lib/tagrity/config_file.rb
CHANGED
data/lib/tagrity/version.rb
CHANGED
data/sample_config.yml
CHANGED
|
@@ -35,11 +35,11 @@ extensions_blacklist: [erb, html, txt]
|
|
|
35
35
|
# how to integrate with git
|
|
36
36
|
# git_strategy: TRACKED | IGNORED | NA
|
|
37
37
|
# TRACKED: only index files tracked by git
|
|
38
|
-
# IGNORED:
|
|
38
|
+
# IGNORED: only index files which are not ignored by git
|
|
39
39
|
# NA: don't use git, index all files under pwd
|
|
40
40
|
#
|
|
41
|
-
# Default:
|
|
42
|
-
git_strategy:
|
|
41
|
+
# Default: NA
|
|
42
|
+
git_strategy: IGNORED
|
|
43
43
|
|
|
44
44
|
# which paths (relative to pwd) to ignore
|
|
45
45
|
# It's usually better to avoid this since tagrity integrates with git by
|