2015-07-25 03:15:00 -04:00
|
|
|
# coding: utf-8
|
|
|
|
|
2017-07-20 15:07:10 -04:00
|
|
|
# lita-tox - Tox adapter for the Lita chat bot
|
|
|
|
# Copyright (C) 2015-2017 Braiden Vasco
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-07-25 03:09:57 -04:00
|
|
|
Gem::Specification.new do |spec|
|
2015-07-25 03:25:16 -04:00
|
|
|
spec.name = 'lita-tox'
|
2015-09-15 16:15:15 -04:00
|
|
|
spec.version = '0.3.0'
|
2015-07-25 03:25:16 -04:00
|
|
|
spec.authors = ['Braiden Vasco']
|
|
|
|
spec.email = ['braiden-vasco@mailtor.net']
|
2015-07-25 03:15:00 -04:00
|
|
|
|
2015-07-25 03:25:16 -04:00
|
|
|
spec.summary = 'Tox adapter for the Lita chat bot'
|
|
|
|
spec.description = 'Tox adapter for the Lita chat bot.'
|
|
|
|
spec.homepage = 'https://github.com/braiden-vasco/lita-tox'
|
2017-07-20 15:01:25 -04:00
|
|
|
spec.license = 'GPL-3.0'
|
2015-07-25 03:15:00 -04:00
|
|
|
|
2015-07-25 04:26:47 -04:00
|
|
|
spec.metadata['lita_plugin_type'] = 'adapter'
|
|
|
|
|
2015-07-25 03:27:06 -04:00
|
|
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
|
|
f.match(%r{^(test|spec|features)/})
|
|
|
|
end
|
2015-07-25 03:09:57 -04:00
|
|
|
|
2015-07-25 03:25:16 -04:00
|
|
|
spec.bindir = 'exe'
|
2015-07-25 03:15:00 -04:00
|
|
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
2015-07-25 03:25:16 -04:00
|
|
|
spec.require_paths = ['lib']
|
2015-07-25 03:09:57 -04:00
|
|
|
|
2015-07-25 09:31:00 -04:00
|
|
|
spec.extensions << 'ext/tox/extconf.rb'
|
|
|
|
|
2015-07-25 03:38:42 -04:00
|
|
|
spec.add_development_dependency 'bundler', '~> 1.7'
|
2015-07-25 03:25:16 -04:00
|
|
|
spec.add_development_dependency 'rake', '~> 10.0'
|
|
|
|
spec.add_development_dependency 'rubocop', '~> 0.31'
|
2015-07-25 03:31:14 -04:00
|
|
|
spec.add_development_dependency 'rspec', '~> 3.3'
|
|
|
|
spec.add_development_dependency 'simplecov', '~> 0.10'
|
2015-07-25 04:02:30 -04:00
|
|
|
spec.add_development_dependency 'yard', '~> 0.8'
|
|
|
|
spec.add_development_dependency 'redcarpet', '~> 3.3'
|
2015-07-25 04:07:37 -04:00
|
|
|
spec.add_development_dependency 'github_changelog_generator', '~> 1.6'
|
2015-07-25 09:18:18 -04:00
|
|
|
spec.add_development_dependency 'rake-compiler', '~> 0.9'
|
2015-09-12 13:01:36 -04:00
|
|
|
spec.add_development_dependency 'pry', '~> 0.10'
|
2015-07-25 03:09:57 -04:00
|
|
|
|
2015-07-25 04:26:47 -04:00
|
|
|
spec.add_runtime_dependency 'lita', '~> 4.4'
|
2015-07-25 03:09:57 -04:00
|
|
|
end
|