ruby-ivy 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/AUTHORS +1 -0
- data/COPYING +504 -0
- data/README +86 -0
- data/ext/ivy/extconf.h +4 -0
- data/ext/ivy/extconf.rb +30 -0
- data/ext/ivy/ivy.c +299 -0
- data/ext/ivy/rb_ivy.h +72 -0
- data/setup.rb +1585 -0
- metadata +59 -0
metadata
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.2
|
3
|
+
specification_version: 1
|
4
|
+
name: ruby-ivy
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0
|
7
|
+
date: 2007-05-11 00:00:00 +02:00
|
8
|
+
summary: Ruby bindings to the libivy
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: gregoire.lejeune@free.fr
|
12
|
+
homepage: http://raa.ruby-lang.org/project/ruby-ivy/
|
13
|
+
rubyforge_project:
|
14
|
+
description: Ivy (http://www.tls.cena.fr/products/ivy/) is a simple protocol and a set of open-source (LGPL) libraries and programs that allows applications to broadcast information through text messages, with a subscription mechanism based on regular expressions.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Gregoire Lejeune
|
31
|
+
files:
|
32
|
+
- COPYING
|
33
|
+
- README
|
34
|
+
- AUTHORS
|
35
|
+
- setup.rb
|
36
|
+
- ext/ivy/extconf.h
|
37
|
+
- ext/ivy/rb_ivy.h
|
38
|
+
- ext/ivy/ivy.c
|
39
|
+
- ext/ivy/extconf.rb
|
40
|
+
test_files: []
|
41
|
+
|
42
|
+
rdoc_options:
|
43
|
+
- --title
|
44
|
+
- Ruby/Ivy
|
45
|
+
- --main
|
46
|
+
- README
|
47
|
+
- --line-numbers
|
48
|
+
extra_rdoc_files:
|
49
|
+
- README
|
50
|
+
- COPYING
|
51
|
+
- AUTHORS
|
52
|
+
executables: []
|
53
|
+
|
54
|
+
extensions:
|
55
|
+
- ext/ivy/extconf.rb
|
56
|
+
requirements: []
|
57
|
+
|
58
|
+
dependencies: []
|
59
|
+
|