diff options
author | Matthias Hecker <mail@apoc.cc> | 2020-03-27 22:31:25 +0100 |
---|---|---|
committer | Matthias Hecker <mail@apoc.cc> | 2020-03-27 22:31:25 +0100 |
commit | 7f42c4523570cd48e67a889aea933a277d7d2a31 (patch) | |
tree | a2d621530ef3f9f9d7195cb87c55044277c390cc /rbot.gemspec | |
parent | d182bb3dc2451d963792e58cf888ac001c524aaf (diff) |
gem: support for newest ruby versions
Diffstat (limited to 'rbot.gemspec')
-rw-r--r-- | rbot.gemspec | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/rbot.gemspec b/rbot.gemspec index d023609d..7792c3dd 100644 --- a/rbot.gemspec +++ b/rbot.gemspec @@ -10,6 +10,7 @@ Gem::Specification.new do |s| A modular ruby IRC bot specifically designed for ease of extension via plugins. EOF s.requirements << 'Ruby, version 1.9.3 (or newer)' + s.licenses = ['GPL-2.0'] s.files = FileList[ 'lib/**/*.rb', @@ -34,17 +35,14 @@ Gem::Specification.new do |s| s.bindir = 'bin' s.executables = ['rbot', 'rbotdb'] - s.default_executable = 'rbot' s.extensions = 'Rakefile' -# s.autorequire = 'rbot/ircbot' - s.has_rdoc = true s.rdoc_options = ['--exclude', 'post-install.rb', '--title', 'rbot API Documentation', '--main', 'README.rdoc', 'README.rdoc'] s.author = 'Tom Gilbert' s.email = 'tom@linuxbrit.co.uk' - s.homepage = 'http://ruby-rbot.org' - s.rubyforge_project = 'rbot' + s.homepage = 'https://ruby-rbot.org' + end |