Version 0.9.15
[rbot] / rbot.gemspec
1 Gem::Specification.new do |s|
2   s.name = 'rbot'
3   s.version = '0.9.15'
4   s.summary = <<-EOF
5     A modular ruby IRC bot.
6   EOF
7   s.description = <<-EOF
8     A modular ruby IRC bot specifically designed for ease of extension via plugins.
9   EOF
10   s.requirements << 'Ruby, version 1.8.0 (or newer)'
11
12   s.files = Dir[
13           'lib/**/*.rb',
14           'bin/*',
15           'data/rbot/**/*',
16           'AUTHORS',
17           'COPYING',
18           'README',
19           'REQUIREMENTS',
20           'TODO',
21           'ChangeLog',
22           'INSTALL',
23           'Usage_en.txt',
24           'setup.rb',
25           'launch_here.rb',
26           'po/*.pot',
27           'po/**/*.po'
28   ]
29
30   s.bindir = 'bin'
31   s.executables = ['rbot', 'rbot-remote']
32   s.default_executable = 'rbot'
33   s.extensions = 'Rakefile'
34
35 #  s.autorequire = 'rbot/ircbot'
36   s.has_rdoc = true
37   s.rdoc_options = ['--exclude', 'post-install.rb',
38   '--title', 'rbot API Documentation', '--main', 'README', 'README']
39
40   s.author = 'Tom Gilbert'
41   s.email = 'tom@linuxbrit.co.uk'
42   s.homepage = 'http://ruby-rbot.org'
43   s.rubyforge_project = 'rbot'
44 end
45