xml-object 0.9.92 → 0.9.93

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,21 +14,19 @@ speedups. See more below.
14
14
 
15
15
  I've tested this release under:
16
16
 
17
- ruby 1.9.1
18
- ruby 1.8.7
19
- ruby 1.8.6
20
- JRuby 1.4.0RC3 (REXML only)
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.3 of libxml-ruby (for faster execution)
25
- version 2.3.4 of activesupport (for inflected plurals)
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
- From Gemcutter's gem server (soon to be the new Rubyforge):
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 accomodate those, as long as they
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
@@ -1,3 +1,7 @@
1
+ * 0.9.93 (?):
2
+ - Rubinius support (tested with REXML only)
3
+ - 1.9.2 support
4
+
1
5
  * 0.9.92 (2009-10-29):
2
6
  - Tested under 1.9.1, 1.8.7, 1.8.6, and JRuby 1.4.0RC3
3
7
  - [API CHANGE!] No longer requires rubygems (ooops)
@@ -1,4 +1,4 @@
1
- require 'libxml'
1
+ require 'libxml' unless defined?(JRUBY_VERSION) # JRuby already has it...
2
2
 
3
3
  module XMLObject::Adapters::LibXML
4
4
  # Can take a String of XML data, or anything that responds to
@@ -5,6 +5,7 @@ class XMLObject::CollectionProxy # :nodoc:
5
5
  undef_method meth_sym unless meth_str =~ /^__/ ||
6
6
  meth_str =~ /^instance_/ ||
7
7
  meth_sym == :is_a? ||
8
+ meth_sym == :kind_of? ||
8
9
  meth_sym == :extend ||
9
10
  meth_sym == :nil? ||
10
11
  meth_sym == :object_id
@@ -1,4 +1,4 @@
1
1
  module XMLObject
2
- VERSION = '0.9.92'
2
+ VERSION = '0.9.93'
3
3
  LOCATION = File.dirname __FILE__ # :nodoc:
4
4
  end
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
- version: 0.9.92
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: 2009-10-30 00:00:00 -04:00
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.5
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