public
Description: Ruby WDDX gem.
Homepage: http://code.juretta.com/ruby/wddx/
Clone URL: git://github.com/juretta/wddx.git
Search Repo:
Add helper files to investigate changes between 1.8 and 1.9
juretta (author)
Wed Apr 30 16:37:08 -0700 2008
commit  6f7c9c97f1efd2befc56bfa7237c8871756b7dee
tree    fb4a42adab85f2ea31f3dec19f9788cf20dd6e77
parent  71ab0ae8df044e558cc923b2479de0ee73c9d2fc
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
0
@@ -1 +1,27 @@
0
+
0
+
0
+class A
0
+ def initialize
0
+ @name = "Stefan"
0
+ @last = "Saasen"
0
+ @num = 10
0
+ @z = :r
0
+ @ary = [1,2]
0
+ end
0
+end
0
+
0
+class B
0
+ def initialize
0
+ @z = :r
0
+ @last = "Saasen"
0
+ @ary = [1,2]
0
+ @name = "Stefan"
0
+ @num = 5
0
+ end
0
+end
0
+
0
+puts "Ruby Version #{RUBY_VERSION}"
0
+
0
+p A.new.instance_variables.sort
0
+p B.new.instance_variables.sort

Comments

    No one has commented yet.