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
Braiden Vasco 46e6d7b2b6 Merge branch 'master' into initialize_lita_adapter
Conflicts:
	.travis.yml
	Gemfile
	README.md
	Rakefile
	lita-tox.gemspec
	spec/spec_helper.rb
2015-07-25 13:26:47 +05:00

34 lines
1.2 KiB
Ruby

# coding: utf-8
Gem::Specification.new do |spec|
spec.name = 'lita-tox'
spec.version = '0.0.0'
spec.authors = ['Braiden Vasco']
spec.email = ['braiden-vasco@mailtor.net']
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'
spec.license = 'MIT'
spec.metadata['lita_plugin_type'] = 'adapter'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.7'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rubocop', '~> 0.31'
spec.add_development_dependency 'rspec', '~> 3.3'
spec.add_development_dependency 'simplecov', '~> 0.10'
spec.add_development_dependency 'yard', '~> 0.8'
spec.add_development_dependency 'redcarpet', '~> 3.3'
spec.add_development_dependency 'github_changelog_generator', '~> 1.6'
spec.add_runtime_dependency 'lita', '~> 4.4'
end