gtdlint 0.3 → 0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -1
  3. data/lib/gtdlint.rb +2 -1
  4. data/lib/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d591322656c0fe0cea4f051ca0176534cd6149f9
4
- data.tar.gz: 5179179da2f3d4215093a646559b41d3bb6bd909
3
+ metadata.gz: cada247b35c61d890089ff9557e0df8073612ea4
4
+ data.tar.gz: 83c4334f89ac04731677ea98e791960bb007a2db
5
5
  SHA512:
6
- metadata.gz: 9d83c3e1e4f2b240f06ad740fb9e836ceb50baa3229f169de2cfd3868ae108bf7f8f9146c1aecb41b0c4ec46cf3ef0d2d1214796fa0b61c7ac100111c860db6f
7
- data.tar.gz: 3cf111bdfbe47896ece72539ba0b71c9c7d3e5ddfeea6bf931e553865b9ff2d133f5f182800b7ebc1801eda99a2310ae3f8ef77aa6bd8e0bfb32d170f080cf43
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
 
@@ -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
@@ -2,5 +2,5 @@
2
2
  # GTDLint
3
3
  #
4
4
  module GTDLint
5
- VERSION = '0.3'
5
+ VERSION = '0.4'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gtdlint
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.3'
4
+ version: '0.4'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Pennebaker