roxo 0.1.10 → 0.1.11
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/lib/roxo.rb +1 -1
- data/roxo.gemspec +1 -1
- metadata +3 -3
data/lib/roxo.rb
CHANGED
|
@@ -3,7 +3,7 @@ require 'libxml'
|
|
|
3
3
|
|
|
4
4
|
# Ruby Objects as XML Objects
|
|
5
5
|
class ROXO
|
|
6
|
-
(instance_methods - %w{__send__ __id__ object_id class send}).each{|m|eval "undef #{m}"}
|
|
6
|
+
(instance_methods.map(&:to_s) - %w{__send__ __id__ object_id class send}).each{|m|eval "undef #{m}"}
|
|
7
7
|
|
|
8
8
|
include Comparable
|
|
9
9
|
|
data/roxo.gemspec
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 11
|
|
9
|
+
version: 0.1.11
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Burke Libbey
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-04-
|
|
17
|
+
date: 2010-04-26 00:00:00 -05:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|