html-proofer 2.6.3 → 2.6.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/lib/html/proofer.rb +1 -1
- data/lib/html/proofer/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: 949542fac56daeafe93fbf17014e96cba9deba3c
|
4
|
+
data.tar.gz: b42e8375b5886aa310fcb1920ca0c676e9dedcc3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d2f2741cc3c6c7ca32220f1e338986148d5bf4c026e1bd5b5e7955652f6a0807d9037a4d71a0aaec7c81e3c9d58ae09ef649388c5be589c08991d27c2a88c33
|
7
|
+
data.tar.gz: 5a478a174241a58cf29192bb62a964703ecb5e90060ac702183067c42a894858dbad4cf5a7591cb216d92785b9216f1eaca2232bcfa248da2af20d206ac1daf6
|
data/lib/html/proofer.rb
CHANGED
@@ -114,7 +114,7 @@ module HTML
|
|
114
114
|
# Walks over each implemented check and runs them on the files, in parallel.
|
115
115
|
def check_files_for_internal_woes
|
116
116
|
if @parallel_opts.empty?
|
117
|
-
|
117
|
+
files.map { |path| check_path(path) }
|
118
118
|
else
|
119
119
|
Parallel.map(files, @parallel_opts) { |path| check_path(path) }
|
120
120
|
end
|
data/lib/html/proofer/version.rb
CHANGED