gtdlint 0.3 → 0.4
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/README.md +2 -1
- data/lib/gtdlint.rb +2 -1
- data/lib/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: cada247b35c61d890089ff9557e0df8073612ea4
|
|
4
|
+
data.tar.gz: 83c4334f89ac04731677ea98e791960bb007a2db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27dea8891fbb54eb265e2c41a366d1837e5bf087f78cc9490585a4bb5504e7db9009b7243a474d499b98aa6401c2319e2557ec1f2e7c9c4131b39859af3b1881
|
|
7
|
+
data.tar.gz: b34885f1e759d559a9ace2b5bb8dddda5cecb8400004e01bed5896b155cdd89f652f18a3e2f2ac808765f7b63fbb45b17affa0d1c64f5935c5a2953e15fd4fe6
|
data/README.md
CHANGED
|
@@ -29,6 +29,7 @@ gtdlint is a shell wrapper around the traditional GNU [grep](http://www.gnu.org/
|
|
|
29
29
|
|
|
30
30
|
```
|
|
31
31
|
$ gtdlint examples/
|
|
32
|
+
examples/.gitignore:1:# TODO: gitignore bin/
|
|
32
33
|
examples/hello.c:1:// TODO: Add copyright
|
|
33
34
|
examples/hello.c:6: // TODO: Add proper line ending
|
|
34
35
|
examples/hello.c:9: putc(10, stdout); // hack
|
|
@@ -40,7 +41,7 @@ stdin:1:// TODO: Add copyright
|
|
|
40
41
|
stdin:6: // TODO: Add proper line ending
|
|
41
42
|
stdin:9: putc(10, stdout); // hack
|
|
42
43
|
|
|
43
|
-
$ gtdlint -i '\.c' examples/
|
|
44
|
+
$ gtdlint -i '\.gitignore' '\.c' examples/
|
|
44
45
|
examples/spanish/phrases.txt:1:PTE: Agregar más frases.
|
|
45
46
|
examples/spec/int_spec.rb:3: pending('mathematical revolution')
|
|
46
47
|
|
data/lib/gtdlint.rb
CHANGED
|
@@ -10,7 +10,6 @@ DEFAULT_IGNORES = %w(
|
|
|
10
10
|
\.hg/
|
|
11
11
|
\.svn/
|
|
12
12
|
\.git/
|
|
13
|
-
\.git
|
|
14
13
|
\.gtdlintignore
|
|
15
14
|
\.gtdlintrc\.yml
|
|
16
15
|
node_modules/
|
|
@@ -19,8 +18,10 @@ DEFAULT_IGNORES = %w(
|
|
|
19
18
|
\.exe
|
|
20
19
|
\.bin
|
|
21
20
|
\.png
|
|
21
|
+
\.gif
|
|
22
22
|
\.jpg
|
|
23
23
|
\.jpeg
|
|
24
|
+
\.tiff
|
|
24
25
|
\.svg
|
|
25
26
|
\.min.js
|
|
26
27
|
-min\.js
|
data/lib/version.rb
CHANGED