anti_image_reflow 0.1.7 → 0.1.9

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: 23b367a228622e3e1dbd634edf32f6d0629dcbcc96e5813226daf525cac2f2f1
4
- data.tar.gz: cf839f9cf4a33e6a48b5d1956707b64e23054966f80d45c2d3b79331069cba11
3
+ metadata.gz: 003c601f030f3f1896ba1c04fb23ef59a08424ad5c237a977f538f47be345147
4
+ data.tar.gz: f3489307838c43dede5618f2f2c2505f13cf11c7d1e020a0119bb140879b144f
5
5
  SHA512:
6
- metadata.gz: c55265b041e5f93697736851dcbd74f4e08efd6ec01a5ff555c9ecd906843298a79cddf52fb62a46edf7592a378f6d3cd40af773fa28ec404545ea9615b6ea1b
7
- data.tar.gz: 3d90610662a05451f15329d2b2dc8059d40bb879ac3e62f11f0dbf68ad06f0d9f1b5e9cc2f6e7b59e91d4d189bb6754544af91549f9eea7eda161ed330beaef2
6
+ metadata.gz: 9f720d1fb1ddd9fb8a51192dcc1008f17fcd237dff636ff4d4c7f7fe5fe5605ba6b3a156ddfb6daac2b0ce37078710cc9d310112ff006265435be88a0d701ad6
7
+ data.tar.gz: ff6a6ead7b17be5cce86647c85431f4ff4627cef99b05c4d1c882a4a29593a35cc3b4c3e002d5f63317b77658e551842ab1556561834cfdee777f2d4351c2685
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AntiImageReflow
4
- VERSION = "0.1.7"
4
+ VERSION = "0.1.9"
5
5
  end
@@ -30,8 +30,9 @@ module Jekyll
30
30
  if tag.name == "img"
31
31
  # get path relative to root
32
32
  path = File.join(Dir.pwd, tag["src"])
33
- # print path
34
- puts path
33
+ # skip if directory or invalid path
34
+ next if File.directory?(path) || !File.exist?(path)
35
+
35
36
  size = FastImage.size(path)
36
37
  tag["width"] = size[0] unless tag["width"] || size.nil?
37
38
  tag["height"] = size[1] unless tag["height"] || size.nil?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anti_image_reflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zachary Smith