vore 0.2.5-arm64-darwin → 0.2.6-arm64-darwin

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc0dadc7e35ecbe250d467f65c9c24443ed535523d4874476b27628ac680fabf
4
- data.tar.gz: 83a30b479e3d23585e8f001dc9879402b97f4a921d22ef0644925a484822168a
3
+ metadata.gz: 402d817b4979ae3cb7caee99653fc2ddfccf726b53f49c76dc078d54a9868af3
4
+ data.tar.gz: 1768208e84f98fbbcb5e8bb683528f6f476c928d79c1e006cb1b6a8bf521cae7
5
5
  SHA512:
6
- metadata.gz: aa3f33ea776f0b4775f650dacaaa350d9a9c0f4fa05cdf2380c2626f46c30d0cb6440972a6eab472e65ec86de1dc771bd9792d183ef5830a5fddc02716805c73
7
- data.tar.gz: 5e3b7fb092abb1d341ac4514ea171affb6df9eace0d6a0183ef477ec3ae3f1c97a33517c05f09720bed51c0219bd2eb819f6653c613e683d45c37e3fec677d25
6
+ metadata.gz: '0091d5f55c923e91abfa57b01e7857072196c85e1053568b5799c715c6d188a27075a82c9393e9fdadade34ff02832c98780dcf9e1f70970f45db29a77fbc733'
7
+ data.tar.gz: 5915151dbdd4d055f5cf6305dada2a0a82d817a8563ddffab52582f6c580903a2f29269b81c3591c407775ab522d66e55c5a901d3afb4640aa0e959c56f88e2c
data/exe/vore-spider CHANGED
Binary file
data/lib/vore/crawler.rb CHANGED
@@ -51,14 +51,22 @@ module Vore
51
51
  results[:pages_visited] += 1
52
52
 
53
53
  html_file = File.read(path).force_encoding("UTF-8")
54
+ rewritten_html_file = ""
54
55
 
55
56
  if html_file.empty?
57
+ Vore.logger.warn("HTML file empty: #{path}")
56
58
  results[:pages_unprocessed] += 1
57
59
  results[:unprocessed_pages] << path
58
60
  next
59
61
  end
60
62
 
61
- rewritten_html_file = @selma.rewrite(html_file)
63
+ begin
64
+ rewritten_html_file = @selma.rewrite(html_file)
65
+ rescue StandardError => e
66
+ Vore.logger.warn("Error rewriting #{path}: #{e}")
67
+ results[:pages_unprocessed] += 1
68
+ next
69
+ end
62
70
 
63
71
  # drops the first 3 parts of the path, which are "tmp", "vore", and the site name
64
72
  url_path = path.split(FILE_SEPERATOR)[3..].join("/")
data/lib/vore/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vore
4
- VERSION = "0.2.5"
4
+ VERSION = "0.2.6"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vore
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Garen J. Torikian