Methods
E
H
N
S
Included Modules
Class Public methods
new()
# File sample/drb/drbs-acl.rb, line 25
def initialize
  @hello = 'hello'
end
Instance Public methods
err()
# File sample/drb/drbs.rb, line 38
def err
  raise FooError
end
hello()
# File sample/drb/drbs-acl.rb, line 29
def hello
  info = Thread.current['DRb']
  p info['socket'].peeraddr if info
  @hello
end
sample(a, b, c)
# File sample/drb/drbs-acl.rb, line 35
def sample(a, b, c)
  a.to_i + b.to_i + c.to_i
end