public
Description: ruby2ruby code for my rubyconf08 talk
Homepage:
Clone URL: git://github.com/mchung/ruby2ruby_rubyconf08.git
ruby2ruby_rubyconf08 / marshal_test.rb
100644 33 lines (27 sloc) 0.545 kb
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
27
28
29
30
31
32
33
class MarshalProcTest
  attr_accessor :block
  def initialize
    @block = proc { "hello world" }
  end
end
 
class MarshalProcWithRuby2RubyTest
  attr_accessor :block
  def initialize
    @block = proc { "hello world" }.to_ruby
  end
end
 
if $0 == __FILE__
  require 'yaml'
  require 'rubygems'
  require 'ruby2ruby'
  require 'parse_tree'
  require 'parse_tree_extensions'
 
  @m = MarshalProcTest.new
  y @m
  y @m.to_yaml
  # pp Marshal.dump(@m) # fails
 
  @r = MarshalProcWithRuby2RubyTest.new
  y @r
  y @r.to_yaml
  y Marshal.dump(@r)
end