quality 15.0.1 → 16.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/quality/config.rb +1 -0
- data/lib/quality/runner.rb +2 -1
- data/lib/quality/tools/punchlist.rb +1 -1
- data/lib/quality/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: 7dcb273206c0cb76d98d32fcf71ce62681473b83
|
4
|
+
data.tar.gz: 407a41ebeced00cbfc6181e12ebdcc578cc3005c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4742667c1d4e04af08cae92256e49266c3156923b3c7ee5ebe1f23450dbe3a7bcec61b54cd27fb2b6f5dc170898982b1b5a9f13deef01b1899c7046206a6705a
|
7
|
+
data.tar.gz: dcc9253f291d1a7f7bf05af1e70e857bd107704a53ca9b6b1e2888ecc3fd532491b5b36d8f21856bdd28fc569f1b256df5607cd0b898e28754ac94fe79e074b2
|
data/lib/quality/config.rb
CHANGED
@@ -22,6 +22,7 @@ module Quality
|
|
22
22
|
:ruby_file_extensions_glob=, :ruby_file_extensions_glob,
|
23
23
|
:source_file_extensions_arr=, :source_file_extensions_arr,
|
24
24
|
:source_file_extensions_glob=, :source_file_extensions_glob,
|
25
|
+
:source_and_doc_files_glob,
|
25
26
|
:source_files_glob,
|
26
27
|
:source_files_exclude_glob,
|
27
28
|
:ruby_files_glob,
|
data/lib/quality/runner.rb
CHANGED
@@ -98,6 +98,7 @@ module Quality
|
|
98
98
|
|
99
99
|
def_delegators :@config, :ruby_files, :ruby_files_glob,
|
100
100
|
:source_files_glob, :punchlist_regexp,
|
101
|
-
:source_files_exclude_glob, :exclude_files
|
101
|
+
:source_files_exclude_glob, :exclude_files,
|
102
|
+
:source_and_doc_files_glob
|
102
103
|
end
|
103
104
|
end
|
@@ -5,7 +5,7 @@ module Quality
|
|
5
5
|
private
|
6
6
|
|
7
7
|
def punchlist_args
|
8
|
-
glob = "--glob '#{
|
8
|
+
glob = "--glob '#{source_and_doc_files_glob}'"
|
9
9
|
regexp = " --regexp '#{punchlist_regexp}'" if punchlist_regexp
|
10
10
|
if exclude_files.size > 0
|
11
11
|
exclude = " --exclude-glob '#{source_files_exclude_glob}'"
|
data/lib/quality/version.rb
CHANGED