-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfluent-plugin-hipchat.gemspec
28 lines (25 loc) · 1.13 KB
/
fluent-plugin-hipchat.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
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-hipchat"
gem.description = "fluent HipChat plugin"
gem.homepage = "https://github.com/fluent-plugins-nursery/fluent-plugin-hipchat"
gem.summary = gem.description
gem.version = File.read("VERSION").strip
gem.authors = ["Yuichi Tateno"]
gem.email = "[email protected]"
gem.has_rdoc = false
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_dependency "fluentd", [">= 0.14.0", "< 2"]
gem.add_dependency "hipchat-api", ">= 1.0.0"
gem.add_development_dependency "rake", ">= 0.9.2"
gem.add_development_dependency "simplecov", ">= 0.5.4"
gem.add_development_dependency "rr", ">= 1.0.0"
gem.add_development_dependency "pry"
gem.add_development_dependency "test-unit", ">= 3.1.0"
gem.add_development_dependency "test-unit-rr", ">= 1.0.5"
gem.add_development_dependency "webrick"
end