-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy-rmi.gemspec
27 lines (26 loc) · 1.07 KB
/
proxy-rmi.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'proxy-rmi'
s.summary = 'Fast & flexible dRuby alternative'
s.description = <<-EOF
ProxyRMI is a transport-agnostic remote-method-invocation service similar to
dRuby (DRb), the "distributed object system for Ruby" included in the standard library. Unlike
DRb, however, ProxyRMI is designed primarily for flexibility and ease-of-use.
EOF
s.version = '0.3.0'
s.files = [ 'lib/proxy.rb',
'lib/proxy/attributes.rb',
'lib/proxy/Client.rb',
'lib/proxy/Message.rb',
'lib/proxy/MessagePasser.rb',
'lib/proxy/Object.rb',
'lib/proxy/ObjectNode.rb',
'lib/proxy/Server.rb',
'lib/proxy/ServerNode.rb',
'lib/proxy/ThreadedService.rb',
]
s.authors = ['Collin J. Sutton']
s.add_runtime_dependency('atomic', '~> 1.1')
s.add_development_dependency('ZenTest', '~> 4.9')
end