forked from kotovalexarian/lita-gitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lita-gitter.gemspec
30 lines (23 loc) · 982 Bytes
/
lita-gitter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = 'lita-gitter'
spec.version = '0.1.0'
spec.authors = ['Braiden Vasco']
spec.email = ['[email protected]']
spec.summary = 'Gitter adapter for the Lita chat bot'
spec.description = 'Gitter adapter for the Lita chat bot.'
spec.homepage = 'https://github.com/braiden-vasco/lita-gitter'
spec.license = 'MIT'
spec.respond_to?(:metadata) and
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_runtime_dependency 'lita', '>= 4.4'
spec.add_runtime_dependency 'em-http-request', '~> 1.1'
end