]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - rbot.gemspec
Update file list in gemspec
[user/henk/code/ruby/rbot.git] / 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           'COPYING.rbot',
19           'GPLv2',
20           'README.rdoc',
21           'REQUIREMENTS',
22           'TODO',
23           'ChangeLog',
24           'INSTALL',
25           'Usage_en.txt',
26           'setup.rb',
27           'launch_here.rb',
28           'po/*.pot',
29           'po/**/*.po'
30   ]
31
32   s.bindir = 'bin'
33   s.executables = ['rbot', 'rbot-remote']
34   s.default_executable = 'rbot'
35   s.extensions = 'Rakefile'
36
37 #  s.autorequire = 'rbot/ircbot'
38   s.has_rdoc = true
39   s.rdoc_options = ['--exclude', 'post-install.rb',
40   '--title', 'rbot API Documentation', '--main', 'README.rdoc', 'README.rdoc']
41
42   s.author = 'Tom Gilbert'
43   s.email = 'tom@linuxbrit.co.uk'
44   s.homepage = 'http://ruby-rbot.org'
45   s.rubyforge_project = 'rbot'
46 end
47