validate-website 1.5.3 → 1.5.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/History.md +387 -0
- data/README.md +130 -0
- data/lib/validate_website/crawl.rb +2 -2
- data/lib/validate_website/version.rb +1 -1
- data/test/crawler_test.rb +20 -3
- data/test/data/cozy-community.html +1041 -0
- data/test/static_test.rb +1 -1
- metadata +6 -3
data/test/static_test.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: validate-website
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Laurent Arnoud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: spidr
|
@@ -159,7 +159,9 @@ executables:
|
|
159
159
|
extensions: []
|
160
160
|
extra_rdoc_files: []
|
161
161
|
files:
|
162
|
+
- History.md
|
162
163
|
- LICENSE
|
164
|
+
- README.md
|
163
165
|
- Rakefile
|
164
166
|
- bin/validate-website
|
165
167
|
- bin/validate-website-static
|
@@ -268,6 +270,7 @@ files:
|
|
268
270
|
- test/core_test.rb
|
269
271
|
- test/crawler_test.rb
|
270
272
|
- test/data/assets/application-92f19110a9d47a56d2ebe744e15af301.css
|
273
|
+
- test/data/cozy-community.html
|
271
274
|
- test/data/html4-strict.html
|
272
275
|
- test/data/html5-linuxfr.html
|
273
276
|
- test/data/html5.html
|
@@ -312,6 +315,6 @@ summary: Web crawler for checking the validity of your documents
|
|
312
315
|
test_files:
|
313
316
|
- test/static_test.rb
|
314
317
|
- test/core_test.rb
|
315
|
-
- test/crawler_test.rb
|
316
318
|
- test/validator_test.rb
|
319
|
+
- test/crawler_test.rb
|
317
320
|
has_rdoc:
|