-
Notifications
You must be signed in to change notification settings - Fork 3
/
lita-debug-queue.gemspec
24 lines (21 loc) · 1.01 KB
/
lita-debug-queue.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
Gem::Specification.new do |spec|
spec.name = "lita-debug-queue"
spec.version = "0.3.1"
spec.authors = ["Brit Butler"]
spec.email = ["[email protected]"]
spec.description = "Queue tracking of users who need debugging help with per-channel management"
spec.summary = "A Lita handler for requesting debugging help"
spec.homepage = "https://github.com/kingcons/lita-debug-queue"
spec.license = "MIT"
spec.metadata = { "lita_plugin_type" => "handler" }
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "lita", ">= 4.5"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "pry-byebug"
spec.add_development_dependency "rake"
spec.add_development_dependency "rack-test"
spec.add_development_dependency "rspec", ">= 3.0.0"
end