preadly-bulbasaur 0.8.0 → 0.8.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
2
  SHA1:
3
- metadata.gz: 975df2c7ace7a0947cd98b55bfcf896a970e5660
4
- data.tar.gz: 5a5b086ba797209a5493d4d1db2026631f2091a2
3
+ metadata.gz: 31c936bb121a4f61275241d5c059222c02f3e7b6
4
+ data.tar.gz: eeeb22a1d7d7177372fe8e40d7f2ad58feab00d3
5
5
  SHA512:
6
- metadata.gz: a62e0c0d111f954d147003c25d37ede0ee09c1717ac3a15f8194d07d847e2cedf474667b03bf9c2a84f52a93d53920f6d5162c44b399ebbc9551b4db88bf65c9
7
- data.tar.gz: fc8dd0769358ef5e52da253d0a412065667920a401c78a07eb52b8f14bb5368542db7098874987386b9ddd9952df0847d2c6c6acd43ef4a21765e596b75ec3f2
6
+ metadata.gz: f83867d13892773d3e73758b99f3d1c2289f41ad8a7fdfc073d902b4f21f83612b71cb320da2eac96937fbf733af3a7e520b0134e3a2c98657ad1501f776c241
7
+ data.tar.gz: 813a56226a7f1ae0db8fd34d3fdafd8666a0aec5c6abea393ec7f73afdbab54805c2b353aeaa010899ba02f4fe7d905ae76e63a22f2ddc2c800575c2aabcdb0d
@@ -28,13 +28,17 @@ module Bulbasaur
28
28
 
29
29
  def adjust(element, attr)
30
30
  element.set_attribute 'src', lazy_load_url(element, element.xpath(attr).text)
31
- element.xpath(attr).remove
31
+ remove_target_attrs_from element
32
32
  end
33
33
 
34
34
  def lazy_load_url(element, text)
35
35
  text_match = text.match(DOMAIN_REGEX).to_s
36
36
  element_match = element.css('@src').text.match(DOMAIN_REGEX).to_s
37
- (text_match == element_match) ? text : "#{element_match}/#{text}"
37
+ element_match.empty? || text_match == element_match ? text : "#{element_match}/#{text}"
38
+ end
39
+
40
+ def remove_target_attrs_from(element)
41
+ @target_attrs.each { |attr| element.xpath("@#{attr}").remove }
38
42
  end
39
43
  end
40
44
  end
@@ -3,7 +3,7 @@ module Bulbasaur
3
3
  module Version
4
4
  MAJOR = 0
5
5
  MINOR = 8
6
- PATCH = 0
6
+ PATCH = 1
7
7
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
8
8
  end
9
9
 
@@ -14,7 +14,10 @@ RSpec.describe Bulbasaur::NormalizeImageSources do
14
14
  <img src="http://somewhere.to/get/another-pixel.gif" data-image="http://somewhere.to/get/the-other-real-image.jpg">
15
15
  <img src="http://somewhere.to/get/a-third-pixel.gif" data-src="get/the-third-real-image.jpg">
16
16
  <img src="otherplace.to/load/a-fourth-pixel.gif" lazy-data="otherplace.to/load/the-fourth-real-image.jpg">
17
- )
17
+ <img src="https://place.where/an-image/is/without-extension/" data-src="https://place.where/an-image/is/without-extension/">
18
+ <img src="https://place.where/an-image/has-two/lazy-params/" data-src="https://place.where/an-image/has-two/lazy-params/" data-image="https://place.where/an-image/has-two/lazy-params/">
19
+ <img lazy-data="https://place.where/an-image/has/no-src-tag.jpg">
20
+ )
18
21
  end
19
22
 
20
23
  context "When there are no target attributes" do
@@ -40,7 +43,10 @@ RSpec.describe Bulbasaur::NormalizeImageSources do
40
43
  <img src="http://somewhere.to/get/the-other-real-image.jpg">
41
44
  <img src="http://somewhere.to/get/a-third-pixel.gif" data-src="get/the-third-real-image.jpg">
42
45
  <img src="otherplace.to/load/a-fourth-pixel.gif" lazy-data="otherplace.to/load/the-fourth-real-image.jpg">
43
- )
46
+ <img src="https://place.where/an-image/is/without-extension/" data-src="https://place.where/an-image/is/without-extension/">
47
+ <img src="https://place.where/an-image/has-two/lazy-params/" data-src="https://place.where/an-image/has-two/lazy-params/">
48
+ <img lazy-data="https://place.where/an-image/has/no-src-tag.jpg">
49
+ )
44
50
  end
45
51
 
46
52
  it "Returns the HTML code with the specified image tags adjusted" do
@@ -60,6 +66,9 @@ RSpec.describe Bulbasaur::NormalizeImageSources do
60
66
  <img src="http://somewhere.to/get/the-other-real-image.jpg">
61
67
  <img src="http://somewhere.to/get/the-third-real-image.jpg">
62
68
  <img src="otherplace.to/load/the-fourth-real-image.jpg">
69
+ <img src="https://place.where/an-image/is/without-extension/">
70
+ <img src="https://place.where/an-image/has-two/lazy-params/">
71
+ <img src="https://place.where/an-image/has/no-src-tag.jpg">
63
72
  )
64
73
  end
65
74
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: preadly-bulbasaur
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Magno Costa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-21 00:00:00.000000000 Z
11
+ date: 2015-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler