esvg 2.8.6 → 2.8.7

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
  SHA1:
3
- metadata.gz: 7c5e7ce6a36acf545b3d05269d817bd64e9d73bc
4
- data.tar.gz: aa6a8709daaea5c4a62c3abdb2902207ec35f24d
3
+ metadata.gz: 024f0bbd1df2c2dbd045bd632801f1160bb85317
4
+ data.tar.gz: 555c4cdfedee44c6fb56ef8f56d35fa3dbe0b980
5
5
  SHA512:
6
- metadata.gz: 812a5bb6f30cd98253253b25a33b22c027170cc1e107dc684f249634bb2294d466ff60570f59509a9bd03837a4d6243d58c3ce9620bdfe54a4aa421192858a42
7
- data.tar.gz: 2565a6132628bd9ca60f6bb1e6013cce667f80095c264fd9e3ea64a6104bfab0dd4b57b57c24fca3e168b1d1b54e44885c22620ca863248bf973dcd27b3ffd42
6
+ metadata.gz: b70387215bb00af1982291c9163a9c2f769aa744002d103f9307dc6cbbfb3df261ac452452654281f2b17ae03646774057dba985d2ef19fbc7a1696b5dbac18f
7
+ data.tar.gz: 97e83f19a08a193cff6192398795515b83545713831b094759479364e24f0cda827b7abe547a9c47a05887a75ef3a500229eed067d59cfa913ded52886ba88b1
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ### 2.8.7 (2016-01-20)
4
+ - Fix: Fixed an accidental regex regression.
5
+
3
6
  ### 2.8.6 (2016-01-20)
4
7
  - Fix: Some regexes weren't specific enough and were interfering with icon names.
5
8
 
@@ -361,7 +361,7 @@ module Esvg
361
361
  symbols << prep_svg(name, data[:content])
362
362
  end
363
363
 
364
- symbols = optimize(symbols.join).gsub(/class=/,'id=').gsub(/<svg/,'<symbol')
364
+ symbols = optimize(symbols.join).gsub(/class=/,'id=').gsub(/svg/,'symbol')
365
365
 
366
366
  %Q{<svg id="esvg-symbols" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">#{symbols}</svg>}
367
367
  end
@@ -1,3 +1,3 @@
1
1
  module Esvg
2
- VERSION = "2.8.6"
2
+ VERSION = "2.8.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: esvg
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.6
4
+ version: 2.8.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis