xml-object 0.9.92 → 0.9.93
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.
- data/README.rdoc +8 -10
- data/WHATSNEW +4 -0
- data/lib/xml-object/adapters/libxml.rb +1 -1
- data/lib/xml-object/collection_proxy.rb +1 -0
- data/lib/xml-object/version.rb +1 -1
- metadata +19 -5
data/README.rdoc
CHANGED
@@ -14,21 +14,19 @@ speedups. See more below.
|
|
14
14
|
|
15
15
|
I've tested this release under:
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
JRuby 1.4.
|
17
|
+
Rubinius: 1.0.1 (REXML only, libxml-ruby might work if you can build it)
|
18
|
+
MRI: 1.9.2, 1.8.7, 1.8.6
|
19
|
+
REE: 1.8.7
|
20
|
+
JRuby: 1.5.2, 1.4.0 (both in 1.8.7 mode)
|
21
21
|
|
22
22
|
And with the following optionals:
|
23
23
|
|
24
|
-
version 1.1.
|
25
|
-
version 2.3.
|
24
|
+
version 1.1.4 of libxml-ruby (for faster execution)
|
25
|
+
version 2.3.8 of activesupport (for inflected plurals)
|
26
26
|
|
27
27
|
== Installation instructions
|
28
28
|
|
29
|
-
|
30
|
-
|
31
|
-
gem install xml-object --source http://gemcutter.org
|
29
|
+
gem install xml-object
|
32
30
|
|
33
31
|
== Example usage
|
34
32
|
|
@@ -169,7 +167,7 @@ on the TODO list.
|
|
169
167
|
=== Incomplete
|
170
168
|
|
171
169
|
It most likely doesn't work with a ton of features of complex XML files (see
|
172
|
-
the caveats section). I'll always try to
|
170
|
+
the caveats section). I'll always try to accommodate those, as long as they
|
173
171
|
don't make the basic usage more complex. As usual, patches welcome.
|
174
172
|
|
175
173
|
== Caveats
|
data/WHATSNEW
CHANGED
data/lib/xml-object/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xml-object
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 129
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 9
|
9
|
+
- 93
|
10
|
+
version: 0.9.93
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Jordi Bunster
|
@@ -9,7 +15,7 @@ autorequire:
|
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date:
|
18
|
+
date: 2010-08-26 00:00:00 -07:00
|
13
19
|
default_executable:
|
14
20
|
dependencies: []
|
15
21
|
|
@@ -51,21 +57,29 @@ rdoc_options:
|
|
51
57
|
require_paths:
|
52
58
|
- lib
|
53
59
|
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
+
none: false
|
54
61
|
requirements:
|
55
62
|
- - ">="
|
56
63
|
- !ruby/object:Gem::Version
|
64
|
+
hash: 59
|
65
|
+
segments:
|
66
|
+
- 1
|
67
|
+
- 8
|
68
|
+
- 6
|
57
69
|
version: 1.8.6
|
58
|
-
version:
|
59
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
60
72
|
requirements:
|
61
73
|
- - ">="
|
62
74
|
- !ruby/object:Gem::Version
|
75
|
+
hash: 3
|
76
|
+
segments:
|
77
|
+
- 0
|
63
78
|
version: "0"
|
64
|
-
version:
|
65
79
|
requirements: []
|
66
80
|
|
67
81
|
rubyforge_project:
|
68
|
-
rubygems_version: 1.3.
|
82
|
+
rubygems_version: 1.3.7
|
69
83
|
signing_key:
|
70
84
|
specification_version: 3
|
71
85
|
summary: The Rubyista's way to do quick XML sit-ups
|