class Druby

Druby Class

Public Instance Methods

main() click to toggle source
# File lib/druby_erb.rb, line 35
def main
  DRb.start_service
  there = DRbObject.new_with_uri('druby://localhost:8888')
  writer = Remindar.new(there)
  there.puts(writer.to_html)
end