add a gemfile
[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.9.3 (or newer)'
11
12   s.files = FileList[
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           'man/rbot.1',
27           'setup.rb',
28           'launch_here.rb',
29           'po/*.pot',
30           'po/**/*.po'
31   ]
32
33   s.bindir = 'bin'
34   s.executables = ['rbot', 'rbotdb']
35   s.default_executable = 'rbot'
36   s.extensions = 'Rakefile'
37
38 #  s.autorequire = 'rbot/ircbot'
39   s.has_rdoc = true
40   s.rdoc_options = ['--exclude', 'post-install.rb',
41   '--title', 'rbot API Documentation', '--main', 'README.rdoc', 'README.rdoc']
42
43   s.author = 'Tom Gilbert'
44   s.email = 'tom@linuxbrit.co.uk'
45   s.homepage = 'http://ruby-rbot.org'
46   s.rubyforge_project = 'rbot'
47 end
48