aboutsummaryrefslogtreecommitdiff
path: root/ruby-ivy.gemspec
blob: 7f7436ed9487f60aae603c665a41e176d1fecb01 (plain)
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
require "rubygems"
require "rake"

PKG_NAME = %q{ruby-ivy}
PKG_VERS = %q{0.1.0}
PKG_DATE = %q{2007-05-11}

PKG_FILES = %w(COPYING README AUTHORS setup.rb) +
 	      Dir.glob("{bin,doc,test,lib,extras}/**/*") +
 	      Dir.glob("ext/**/*.{h,c,rb}")

Gem::Specification.new do |s|
  s.name = PKG_NAME
  s.version = PKG_VERS
  s.date = PKG_DATE
  s.platform = Gem::Platform::RUBY
  
  s.authors = ["Gregoire Lejeune"]
  s.summary = %q{Ruby bindings to the libivy}
  s.email = %q{gregoire.lejeune@free.fr}
  s.homepage = %q{http://raa.ruby-lang.org/project/ruby-ivy/}
  s.description = %q{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.}

  s.files = PKG_FILES
  s.require_path = "lib"
  s.extensions = FileList["ext/**/extconf.rb"].to_a
  s.bindir = "bin"
  
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "COPYING", "AUTHORS"]
  s.rdoc_options = ["--title", "Ruby/Ivy", "--main", "README", "--line-numbers"]
end