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