htmlentities 4.1.0 → 4.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/lib/htmlentities.rb +6 -122
- data/lib/htmlentities/decoder.rb +23 -0
- data/lib/htmlentities/encoder.rb +105 -0
- data/lib/htmlentities/version.rb +2 -2
- data/perf/benchmark.rb +13 -0
- data/perf/performance.rb +31 -0
- data/perf/profile.rb +17 -0
- data/setup.rb +1596 -0
- metadata +12 -4
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: htmlentities
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Battley
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-10-11 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -24,9 +24,11 @@ extra_rdoc_files:
|
|
24
24
|
- History.txt
|
25
25
|
- COPYING.txt
|
26
26
|
files:
|
27
|
+
- lib/htmlentities/decoder.rb
|
27
28
|
- lib/htmlentities/mappings/html4.rb
|
28
29
|
- lib/htmlentities/mappings/expanded.rb
|
29
30
|
- lib/htmlentities/mappings/xhtml1.rb
|
31
|
+
- lib/htmlentities/encoder.rb
|
30
32
|
- lib/htmlentities/flavors.rb
|
31
33
|
- lib/htmlentities/legacy.rb
|
32
34
|
- lib/htmlentities/version.rb
|
@@ -38,11 +40,17 @@ files:
|
|
38
40
|
- test/expanded_test.rb
|
39
41
|
- test/legacy_test.rb
|
40
42
|
- test/entities_test.rb
|
43
|
+
- perf/benchmark.rb
|
44
|
+
- perf/performance.rb
|
45
|
+
- perf/profile.rb
|
46
|
+
- setup.rb
|
41
47
|
- README.txt
|
42
48
|
- History.txt
|
43
49
|
- COPYING.txt
|
44
50
|
has_rdoc: true
|
45
51
|
homepage: http://htmlentities.rubyforge.org/
|
52
|
+
licenses: []
|
53
|
+
|
46
54
|
post_install_message:
|
47
55
|
rdoc_options: []
|
48
56
|
|
@@ -63,9 +71,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
71
|
requirements: []
|
64
72
|
|
65
73
|
rubyforge_project:
|
66
|
-
rubygems_version: 1.3.
|
74
|
+
rubygems_version: 1.3.5
|
67
75
|
signing_key:
|
68
|
-
specification_version:
|
76
|
+
specification_version: 3
|
69
77
|
summary: A module for encoding and decoding (X)HTML entities.
|
70
78
|
test_files:
|
71
79
|
- test/test_all.rb
|