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.
- Host: GitHub
- URL: https://github.com/bagilevi/grove
- Owner: bagilevi
- Created: 2011-04-05T01:41:38.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-04-05T12:05:36.000Z (about 14 years ago)
- Last Synced: 2025-02-13T05:14:54.772Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
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
endGrove.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