htmlentities 4.3.2 → 4.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.txt +6 -0
- data/lib/htmlentities/mappings/expanded.rb +0 -1
- data/lib/htmlentities/version.rb +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef0fa5272c740431943cb9a35c00bf21556c99b2
|
4
|
+
data.tar.gz: 6c69e56466f3a9627b965b0f60dd84a388125f04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4f5e29101deab31142032fe262d0c9ed5810371de4e1dfa0796e430e8a5fdfa487e834cad2137663830974a32031b2d27ac14b45acdb5243fdf63ae873fbae1
|
7
|
+
data.tar.gz: eb9af28f8afb7dee4dade363558a99f08a66b3d7725486df903e042a37b3e796604895657bda635e628911c47b596ab32864d2cda4a293e19349039c1d6d1546
|
data/History.txt
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
== 4.3.3 (2014-12-25)
|
2
|
+
* Remove duplicate hash entry that causes warnings in Ruby 2.2.0.
|
3
|
+
|
4
|
+
== 4.3.2 (2014-05-31)
|
5
|
+
* Ruby 1.8 is no longer supported
|
6
|
+
|
1
7
|
== 4.3.1 (2011-11-30)
|
2
8
|
* Fix bug when working with Rails 3/Ruby 1.8.7
|
3
9
|
* Make character encoding behaviour consistent in Ruby 1.9.2/1.9.3
|
@@ -463,7 +463,6 @@ class HTMLEntities
|
|
463
463
|
'incare' => 0x2105, # ℅ CARE OF
|
464
464
|
'infin' => 0x221e, # ∞ xhtml INFINITY
|
465
465
|
'inodot' => 0x0131, # ı dup LATIN SMALL LETTER DOTLESS I
|
466
|
-
'inodot' => 0x0131, # ı dup LATIN SMALL LETTER DOTLESS I
|
467
466
|
'int' => 0x222b, # ∫ xhtml INTEGRAL
|
468
467
|
'intcal' => 0x22ba, # ⊺ INTERCALATE
|
469
468
|
'IOcy' => 0x0401, # Ё CYRILLIC CAPITAL LETTER IO
|
data/lib/htmlentities/version.rb
CHANGED
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: htmlentities
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.3.
|
4
|
+
version: 4.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Battley
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-12-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
description: A module for encoding and decoding (X)HTML entities.
|
@@ -75,17 +75,17 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
version: '0'
|
76
76
|
requirements: []
|
77
77
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.
|
78
|
+
rubygems_version: 2.4.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Encode/decode HTML entities
|
82
82
|
test_files:
|
83
|
-
- test/interoperability_test.rb
|
84
|
-
- test/encoding_test.rb
|
85
|
-
- test/string_encodings_test.rb
|
86
|
-
- test/entities_test.rb
|
87
|
-
- test/html4_test.rb
|
88
83
|
- test/xhtml1_test.rb
|
89
|
-
- test/
|
84
|
+
- test/string_encodings_test.rb
|
85
|
+
- test/interoperability_test.rb
|
90
86
|
- test/decoding_test.rb
|
87
|
+
- test/expanded_test.rb
|
88
|
+
- test/encoding_test.rb
|
91
89
|
- test/roundtrip_test.rb
|
90
|
+
- test/html4_test.rb
|
91
|
+
- test/entities_test.rb
|