-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathfluent-plugin-input-gelf.gemspec
More file actions
26 lines (23 loc) · 1000 Bytes
/
fluent-plugin-input-gelf.gemspec
File metadata and controls
26 lines (23 loc) · 1000 Bytes
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
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-input-gelf"
gem.description = "A GELF input plugin for fluentd"
gem.license = "MIT"
gem.homepage = "https://github.com/MerlinDMC/fluent-plugin-input-gelf"
gem.summary = gem.description
gem.version = "0.3.2"
gem.authors = ["Daniel Malon"]
gem.email = "daniel.malon@me.com"
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_runtime_dependency "fluentd", [">= 0.14.10", "< 2"]
gem.add_runtime_dependency "gelfd2", ">= 0.3.0"
gem.add_development_dependency "bundler"
gem.add_development_dependency "rake"
gem.add_development_dependency "test-unit"
gem.add_development_dependency "gelf", ">= 2.0.0"
end