Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lita-tox/lita-tox.gemspec

41 lines
1.3 KiB
Ruby
Raw Normal View History

2015-07-25 03:15:00 -04:00
# coding: utf-8
2017-07-20 15:33:29 -04:00
# frozen_string_literal: true
2015-07-25 03:15:00 -04:00
2017-07-20 17:22:37 -04:00
lib = File.expand_path('lib', __dir__).freeze
$LOAD_PATH.unshift lib unless $LOAD_PATH.include? lib
Gem::Specification.new do |spec|
2017-07-20 17:22:37 -04:00
spec.name = 'lita-tox'
2018-03-23 18:57:39 -04:00
spec.version = '0.5.0'
2017-07-20 17:22:37 -04:00
spec.license = 'GPL-3.0'
spec.homepage = 'https://github.com/toxon/lita-tox'
spec.summary = 'Tox adapter for the Lita chat bot'
spec.platform = Gem::Platform::RUBY
2015-07-25 03:15:00 -04:00
2017-07-20 17:22:37 -04:00
spec.authors = ['Braiden Vasco']
spec.email = %w[braiden-vasco@users.noreply.github.com]
2015-07-25 03:15:00 -04:00
2017-07-20 16:06:14 -04:00
spec.required_ruby_version = '~> 2.3'
2017-07-20 17:22:37 -04:00
spec.description = 'Tox adapter for the Lita chat bot.'
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|
2017-07-20 17:22:37 -04:00
f.match %r{^(test|spec|features)/}
2015-07-25 03:27:06 -04:00
end
2017-07-20 17:22:37 -04:00
spec.bindir = 'exe'
spec.executables = spec.files.grep %r{^exe/}, &File.method(:basename)
2018-03-23 18:55:26 -04:00
spec.add_development_dependency 'bundler', '~> 1.7'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rubocop', '~> 0.49.1'
spec.add_development_dependency 'rspec', '~> 3.3'
spec.add_development_dependency 'simplecov', '~> 0.10'
spec.add_development_dependency 'pry', '~> 0.10'
2017-07-20 16:49:50 -04:00
spec.add_runtime_dependency 'lita', '~> 4.7'
2018-03-23 17:20:32 -04:00
spec.add_runtime_dependency 'tox', '~> 0.0.2'
end