tagrity 0.2.8 → 0.2.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c8c42e0e1ac32e3768303834a812526e83101fde7bb57b962e14a23b5ce6c237
4
- data.tar.gz: 6aadd31ef7f0e5440a27270698021b5d65cdf669f395dfb81b2f9e6f8b459e29
3
+ metadata.gz: 549eec0328ebf62ba6671dccf3a0cba4fb17f42840f025202631dc08e9e68ea1
4
+ data.tar.gz: e1294dcca926174cbb17d2f30010701ff57acd8f1979b8b7b45a7adc767d577c
5
5
  SHA512:
6
- metadata.gz: fc3e8e1da9ea9fa27fd266c39985572f178d08531e0c7e10ec606782369c151eb87448ccd50930dd9cc9052bac8af4e37a79cc6dc4268fd42353950b07271ba5
7
- data.tar.gz: 4d957c634cabf029a6f7ba14112dffdba31f56f2699d80adb0ff5bb00e8217ab58744881cf646a1583072a01be7c71348482e05310a21d1625a059e4711152ec
6
+ metadata.gz: 732666dc83957b70f060ac20ee7e5b615dd48e2b65e42274d7b220d65f6d824a1fa8aa590ee95a5af221bfc9470d98a24142fa3383026fd09501460ffbec8dd2
7
+ data.tar.gz: 2c3bab8727ce1b884f9c20ea295d639df2136a75712abc9fc45aa1b06e354ed8ad521a88b1668dd78ed5fc953138488e6d6f556617ce0745227dd680202a8f48
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tagrity (0.2.8)
4
+ tagrity (0.2.9)
5
5
  cli-ui (~> 1.3.0)
6
6
  listen (~> 3.0)
7
7
  pry (~> 0.9.9)
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 by default only index files tracked by git.
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: don't index files which are ignored by git
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: TRACKED
85
- git_strategy: TRACKED
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] # the number of log lines to print
145
- # Default: 10
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
  ```
@@ -119,7 +119,7 @@ module Tagrity
119
119
  end
120
120
 
121
121
  def ensure_git_strategy
122
- ensure_option('git_strategy', 'TRACKED')
122
+ ensure_option('git_strategy', 'NA')
123
123
  end
124
124
 
125
125
  def ensure_excluded_paths
@@ -1,3 +1,3 @@
1
1
  module Tagrity
2
- VERSION = "0.2.8"
2
+ VERSION = "0.2.9"
3
3
  end
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: don't index files which are ignored by git
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: TRACKED
42
- git_strategy: TRACKED
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tagrity
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.8
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam P. Regasz-Rethy