An open API service indexing awesome lists of open source software.

https://github.com/bagilevi/grove

Run and invoke DRb services on the same box with no configuration.
https://github.com/bagilevi/grove

Last synced: 3 months ago
JSON representation

Run and invoke DRb services on the same box with no configuration.

Awesome Lists containing this project

README

        

= Grove

Run and invoke DRb services on the same box with no configuration.

== Example

server.rb:

require 'lib/grove'

class Calculator
def self.add(a, b)
a + b
end
end

Grove.run_service(Calculator)

client.rb:

require 'lib/grove'

puts Grove::Calculator.add(2, 2)

== Installation

gem install grove

== License

Grove is released under the GPL license.

Copyright (c) 2011 Levente Bagi