check-sitemap 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: fcb915285a75f56dadee574a769a8129e74674e9
4
- data.tar.gz: 3e1c38dc8e9448ada068988a3c1d298a973b40a4
2
+ SHA256:
3
+ metadata.gz: 34b41a6c7da8f59a36a8666e9f1d8604e04527dffa91377ebd4d93c9802642cf
4
+ data.tar.gz: 5deab6940dbc458d57d85772b3bbe6fe093e2eebf406d07190ab9633ee28b783
5
5
  SHA512:
6
- metadata.gz: e27f419c8d062eabaa499b08365c541c957fc545a96897d62e7618902fe43a929eb982242076fd6825fbbedb4a58adf5fc3ccd21c7239bdef9ba479fd08ad812
7
- data.tar.gz: 11e67d7b4f19a52bb5539b1817e0c546a0373b1366154e4bc04bec3a91b704bb150fb1fe3c137a1391af1b7ebeb86ba14564c734dc152ee3ce719f1e485e8c45
6
+ metadata.gz: b15b4fa6ce693062dcfa4bfbd20b2b18d3b88cefd62a44ff9a4cbb8d60aa3d19df4eb47889c7a2a720e1a730808369b4675d25456362b88c42ca2995abac294e
7
+ data.tar.gz: eef16a3febf7558e6125b6e76f0c909a8580ea5912da2badaff56f0e9d631b557751795e0d76853e997c5c007d7200f5198a973539610606d12c41834885ebf9
@@ -0,0 +1,2 @@
1
+ 2.5.1
2
+
@@ -1,4 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - 2.2.3
4
+ - 2.4.3
5
+ - 2.5.1
4
6
  before_install: gem install bundler -v 1.10.6
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'nokogiri', '~> 1.8', '>= 1.8.2'
3
+ gem 'nokogiri', '~> 1.8', '>= 1.8.4'
4
4
  gem 'rainbow', '~> 3.0'
5
5
 
6
6
  gemspec
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- check-sitemap (0.3.0)
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.2)
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.2)
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.0
41
+ 1.16.1
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Check Sitemap
2
2
 
3
- `check-sitemap` is agem that pulls a sitemap and checks all of the URLs listed in it.
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 `--concurrence=<num threads>` to parallel process sitemap urls.
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 --concurrence=5
25
+ $ checksitemap http://example.com/sitemap_index.xml --concurrency=5
26
26
 
27
27
 
28
28
  ## Contributing
@@ -1,3 +1,5 @@
1
+ require 'net/http'
2
+
1
3
  class CheckSitemap::CheckURL
2
4
 
3
5
  def self.call(url)
@@ -1,3 +1,3 @@
1
1
  module CheckSitemap
2
- VERSION = '0.3.0'.freeze
2
+ VERSION = '0.3.1'.freeze
3
3
  end
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.0
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-02-01 00:00:00.000000000 Z
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.5.1
103
+ rubygems_version: 2.7.6
103
104
  signing_key:
104
105
  specification_version: 4
105
106
  summary: Check URLs in a sitemap.xml