projects
/
ruby-eet.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Don't specify the parent class of Eet::Stream when we re-open it.
[ruby-eet.git]
/
test
/
common.rb
1
# $Id: common.rb 2 2005-03-26 13:39:17Z tilman $
2
3
class WrappedString
4
def initialize(blah)
5
@blah = blah
6
end
7
8
private
9
def to_eet_name
10
"String"
11
end
12
13
def to_eet_properties
14
{"buf" => [@blah]}
15
end
16
end