Class Foo
In: lib/drb/extserv.rb
Parent: Object

Methods

hello   new   to_s  

Included Modules

DRbUndumped

Public Class methods

[Source]

    # File lib/drb/extserv.rb, line 42
42:     def initialize(str)
43:       @str = str
44:     end

Public Instance methods

[Source]

    # File lib/drb/extserv.rb, line 46
46:     def hello(it)
47:       "#{it}: #{self}"
48:     end

[Source]

    # File lib/drb/extserv.rb, line 50
50:     def to_s
51:       @str
52:     end

[Validate]