-
Notifications
You must be signed in to change notification settings - Fork 0
/
lwes.gemspec
52 lines (52 loc) · 1.4 KB
/
lwes.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Gem::Specification.new do |s|
s.name = %q{lwes}
s.version = "0.7.0"
s.date = Time.now
s.authors = ["Erik S. Chang", "Frank Maritato"]
s.email = %q{[email protected]}
s.summary = %q{Ruby API for the Light Weight Event System}
s.homepage = %q{http://www.lwes.org/}
s.extensions = %w(ext/lwes/extconf.rb)
s.description = %q{
The LWES Light-Weight Event System is a framework for allowing the exchange of
information from many machines to many machines in a controlled, platform
neutral, language neutral way. The exchange of information is done in a
connectless fashion using multicast or unicast UDP, and using self describing
data so that any platform or language can translate it to it's local dialect.
}.strip
s.files = %w(
COPYING
ChangeLog
README
Rakefile
examples/demo.rb
examples/my_events.esf
ext/lwes/emitter.c
ext/lwes/event.c
ext/lwes/extconf.rb
ext/lwes/lwes.c
ext/lwes/lwes_ruby.h
ext/lwes/numeric.c
ext/lwes/type_db.c
lib/lwes.rb
lib/lwes/emitter.rb
lib/lwes/event.rb
lib/lwes/struct.rb
lib/lwes/type_db.rb
lwes.gemspec
test/test_helper.rb
test/unit/meta_only.esf
test/unit/namespaced.esf
test/unit/test1.esf
test/unit/test2.esf
test/unit/test_emit_struct.rb
test/unit/test_emitter.rb
test/unit/test_event.rb
test/unit/test_struct.rb
test/unit/test_type_db.rb
) + %w(
ext/lwes/lwes-0.23.1.tar.gz
)
s.rubyforge_project = 'lwes'
s.test_files = s.files.grep(%r{\Atest/unit/test_})
end