htmlentities 4.3.2 → 4.3.3

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: f6afa4d22af6c783ac7932aaeda0e3369bfb0648
4
- data.tar.gz: eced509ca635c31969ab270199beb23f1d08e653
3
+ metadata.gz: ef0fa5272c740431943cb9a35c00bf21556c99b2
4
+ data.tar.gz: 6c69e56466f3a9627b965b0f60dd84a388125f04
5
5
  SHA512:
6
- metadata.gz: 77876c708e3db5def2ccebfb2ce11fd216e645acc4844b7215d872e162d139c5d0f797721b52b418df9104b08f51fc2565b505e93b5a7a48732ac89f9a53a83e
7
- data.tar.gz: 7f37a24c747c9dd56735ae247ff60b9a7b29f10bac0f261709e3d9b3371fc805d00cd91670b9f712759eb571d14b78de106f9b110a139cfe8469ea0b7f776ee4
6
+ metadata.gz: c4f5e29101deab31142032fe262d0c9ed5810371de4e1dfa0796e430e8a5fdfa487e834cad2137663830974a32031b2d27ac14b45acdb5243fdf63ae873fbae1
7
+ data.tar.gz: eb9af28f8afb7dee4dade363558a99f08a66b3d7725486df903e042a37b3e796604895657bda635e628911c47b596ab32864d2cda4a293e19349039c1d6d1546
@@ -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
@@ -2,7 +2,7 @@ class HTMLEntities
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 4
4
4
  MINOR = 3
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
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.2
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-05-30 00:00:00.000000000 Z
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.2.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/expanded_test.rb
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