ox 1.1.1 → 1.2.0
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.
Potentially problematic release.
This version of ox might be problematic. Click here for more details.
- data/ext/ox/base64.c +6 -5
- data/ext/ox/dump.c +83 -25
- data/ext/ox/gen_load.c +105 -26
- data/ext/ox/obj_load.c +9 -5
- data/ext/ox/ox.c +246 -83
- data/ext/ox/ox.h +45 -6
- data/ext/ox/parse.c +46 -72
- data/lib/ox.rb +3 -2
- data/lib/ox/bag.rb +25 -25
- data/lib/ox/version.rb +5 -0
- data/test/bug1.rb +24 -0
- data/test/bug2.rb +38 -0
- data/test/func.rb +79 -2
- metadata +8 -3
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: ox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 1.
|
5
|
+
version: 1.2.0
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Peter Ohler
|
@@ -10,7 +10,8 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-07-
|
13
|
+
date: 2011-07-12 00:00:00 +09:00
|
14
|
+
default_executable:
|
14
15
|
dependencies: []
|
15
16
|
|
16
17
|
description: A fast XML parser and object serializer that uses only standard C lib.
|
@@ -29,6 +30,7 @@ files:
|
|
29
30
|
- lib/ox/document.rb
|
30
31
|
- lib/ox/element.rb
|
31
32
|
- lib/ox/node.rb
|
33
|
+
- lib/ox/version.rb
|
32
34
|
- lib/ox.rb
|
33
35
|
- ext/ox/extconf.rb
|
34
36
|
- ext/ox/base64.h
|
@@ -45,6 +47,8 @@ files:
|
|
45
47
|
- ext/ox/obj_load.c
|
46
48
|
- ext/ox/ox.c
|
47
49
|
- ext/ox/parse.c
|
50
|
+
- test/bug1.rb
|
51
|
+
- test/bug2.rb
|
48
52
|
- test/cache16_test.rb
|
49
53
|
- test/cache8_test.rb
|
50
54
|
- test/cache_test.rb
|
@@ -74,6 +78,7 @@ files:
|
|
74
78
|
- test/Sample.graffle
|
75
79
|
- LICENSE
|
76
80
|
- README.rdoc
|
81
|
+
has_rdoc: true
|
77
82
|
homepage: https://github.com/ohler55/ox
|
78
83
|
licenses: []
|
79
84
|
|
@@ -99,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
104
|
requirements: []
|
100
105
|
|
101
106
|
rubyforge_project: ox
|
102
|
-
rubygems_version: 1.
|
107
|
+
rubygems_version: 1.6.2
|
103
108
|
signing_key:
|
104
109
|
specification_version: 3
|
105
110
|
summary: A fast XML parser and object serializer.
|