validate-website 1.0.1 → 1.0.2
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/LICENSE +1 -1
- data/lib/validate_website/core.rb +2 -3
- data/spec/core_spec.rb +1 -1
- data/spec/data/assets/application-92f19110a9d47a56d2ebe744e15af301.css +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4263f21d67ab70f12daa7658a7808e1829a9f9da
|
4
|
+
data.tar.gz: 88550249c2caca495b8478392c44d6df52d4d7a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8e86f4d2afbed43f52fecb99f5a2e953f4d20440de2b000ab235d60c42318cf0e0b77c80e83fb4cea2d90aa53e9838c848ff1ba3179d5393badb6e300aad890
|
7
|
+
data.tar.gz: a1676d60f28951d851983661000362e337952dee65188c670fc55484156100ac2ed8ac9683329fc8afae9d55db9cab7811585db0fea6eb0bf0467f27222f066a
|
data/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License
|
2
2
|
|
3
|
-
Copyright (c) 2009-
|
3
|
+
Copyright (c) 2009-2015 Laurent Arnoud <laurent@spkdev.net>
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
6
6
|
a copy of this software and associated documentation files (the
|
@@ -118,7 +118,7 @@ module ValidateWebsite
|
|
118
118
|
# check files linked on static document
|
119
119
|
# see lib/validate_website/runner.rb
|
120
120
|
def check_static_not_found(links)
|
121
|
-
links.
|
121
|
+
links.each_with_object(Set[]) do |l, result|
|
122
122
|
link = static_site_link(l)
|
123
123
|
next unless in_static_domain?(@site, link)
|
124
124
|
file_path = URI.parse(File.join(Dir.getwd, link.path || '/')).path
|
@@ -127,8 +127,7 @@ module ValidateWebsite
|
|
127
127
|
if File.extname(file_path) == '.css'
|
128
128
|
response = fake_httpresponse(open(file_path).read, ['text/css'])
|
129
129
|
css_page = Spidr::Page.new(l, response)
|
130
|
-
|
131
|
-
links.uniq!
|
130
|
+
result.merge extract_urls_from_css(css_page)
|
132
131
|
end
|
133
132
|
end
|
134
133
|
end
|
data/spec/core_spec.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
.t { background-image: url(/image/42.png) }
|
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.0.
|
4
|
+
version: 1.0.2
|
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-02-
|
11
|
+
date: 2015-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: spidr
|
@@ -234,6 +234,7 @@ files:
|
|
234
234
|
- man/man1/validate-website-static.1
|
235
235
|
- man/man1/validate-website.1
|
236
236
|
- spec/core_spec.rb
|
237
|
+
- spec/data/assets/application-92f19110a9d47a56d2ebe744e15af301.css
|
237
238
|
- spec/data/html4-strict.html
|
238
239
|
- spec/data/html5-linuxfr.html
|
239
240
|
- spec/data/html5.html
|