-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlita-team.gemspec
More file actions
28 lines (24 loc) · 1.13 KB
/
lita-team.gemspec
File metadata and controls
28 lines (24 loc) · 1.13 KB
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
Gem::Specification.new do |spec|
spec.name = "lita-team"
spec.version = "2.2.1"
spec.authors = ["Edgar Ortega"]
spec.email = ["edgarortegaramirez@gmail.com"]
spec.description = "create and manage the members of a team with Lita"
spec.summary = "create and manage the members of a team with Lita"
spec.homepage = "https://github.com/EdgarOrtegaRamirez/lita-team"
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.required_ruby_version = '~> 2.0'
spec.add_runtime_dependency "lita", ">= 4.7"
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"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "coveralls"
end