-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathfluent-plugin-out-http.gemspec
More file actions
26 lines (22 loc) · 1.02 KB
/
Copy pathfluent-plugin-out-http.gemspec
File metadata and controls
26 lines (22 loc) · 1.02 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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = "fluent-plugin-out-http"
gem.version = "1.3.5"
gem.authors = ["Marica Odagaki"]
gem.email = ["ento.entotto@gmail.com"]
gem.summary = %q{A generic Fluentd output plugin to send logs to an HTTP endpoint}
gem.description = gem.summary
gem.homepage = "https://github.com/fluent-plugins-nursery/fluent-plugin-out-http"
gem.licenses = ["Apache-2.0"]
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 2.1.0'
gem.add_runtime_dependency "fluentd", [">= 0.14.22", "< 2"]
gem.add_development_dependency "bundler"
gem.add_development_dependency "rake"
gem.add_development_dependency "test-unit", ">= 3.1.0"
gem.add_development_dependency "test-unit-rr", "~> 1.0"
gem.add_development_dependency "webrick"
end