check-sitemap 0.3.0 → 0.3.1
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 +5 -5
- data/.ruby-version +2 -0
- data/.travis.yml +2 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +4 -4
- data/README.md +3 -3
- data/lib/check_sitemap/check_url.rb +2 -0
- data/lib/check_sitemap/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 34b41a6c7da8f59a36a8666e9f1d8604e04527dffa91377ebd4d93c9802642cf
|
|
4
|
+
data.tar.gz: 5deab6940dbc458d57d85772b3bbe6fe093e2eebf406d07190ab9633ee28b783
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b15b4fa6ce693062dcfa4bfbd20b2b18d3b88cefd62a44ff9a4cbb8d60aa3d19df4eb47889c7a2a720e1a730808369b4675d25456362b88c42ca2995abac294e
|
|
7
|
+
data.tar.gz: eef16a3febf7558e6125b6e76f0c909a8580ea5912da2badaff56f0e9d631b557751795e0d76853e997c5c007d7200f5198a973539610606d12c41834885ebf9
|
data/.ruby-version
ADDED
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
check-sitemap (0.3.
|
|
4
|
+
check-sitemap (0.3.1)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
9
|
diff-lcs (1.3)
|
|
10
10
|
mini_portile2 (2.3.0)
|
|
11
|
-
nokogiri (1.8.
|
|
11
|
+
nokogiri (1.8.4)
|
|
12
12
|
mini_portile2 (~> 2.3.0)
|
|
13
13
|
rainbow (3.0.0)
|
|
14
14
|
rake (10.5.0)
|
|
@@ -32,10 +32,10 @@ PLATFORMS
|
|
|
32
32
|
DEPENDENCIES
|
|
33
33
|
bundler (~> 1.10)
|
|
34
34
|
check-sitemap!
|
|
35
|
-
nokogiri (~> 1.8, >= 1.8.
|
|
35
|
+
nokogiri (~> 1.8, >= 1.8.4)
|
|
36
36
|
rainbow (~> 3.0)
|
|
37
37
|
rake (~> 10.0)
|
|
38
38
|
rspec (~> 3.7)
|
|
39
39
|
|
|
40
40
|
BUNDLED WITH
|
|
41
|
-
1.16.
|
|
41
|
+
1.16.1
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Check Sitemap
|
|
2
2
|
|
|
3
|
-
`check-sitemap` is
|
|
3
|
+
`check-sitemap` is a gem that pulls a sitemap and checks all of the URLs listed in it.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -20,9 +20,9 @@ Local filename:
|
|
|
20
20
|
$ checksitemap path/to/sitemap.xml.gz # Yeah.. works also with gziped files(Remote or local)
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
It process all the files included in the sitemap index. Use `--
|
|
23
|
+
It process all the files included in the sitemap index. Use `--concurrency=<num threads>` to parallel process sitemap urls.
|
|
24
24
|
|
|
25
|
-
$ checksitemap http://example.com/sitemap_index.xml --
|
|
25
|
+
$ checksitemap http://example.com/sitemap_index.xml --concurrency=5
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
## Contributing
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: check-sitemap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marcos G. Zimmermann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -62,6 +62,7 @@ extra_rdoc_files: []
|
|
|
62
62
|
files:
|
|
63
63
|
- ".gitignore"
|
|
64
64
|
- ".rspec"
|
|
65
|
+
- ".ruby-version"
|
|
65
66
|
- ".travis.yml"
|
|
66
67
|
- Gemfile
|
|
67
68
|
- Gemfile.lock
|
|
@@ -99,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
99
100
|
version: '0'
|
|
100
101
|
requirements: []
|
|
101
102
|
rubyforge_project:
|
|
102
|
-
rubygems_version: 2.
|
|
103
|
+
rubygems_version: 2.7.6
|
|
103
104
|
signing_key:
|
|
104
105
|
specification_version: 4
|
|
105
106
|
summary: Check URLs in a sitemap.xml
|