-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfluent-plugin-barito.gemspec
34 lines (29 loc) · 1.38 KB
/
fluent-plugin-barito.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
29
30
31
32
33
34
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-barito"
spec.version = "0.5.1"
spec.authors = ["BaritoLog"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = %q{Fluentd output plugin for BaritoLog}
spec.description = %q{This gem will forward output from fluentd to Barito-Flow}
spec.homepage = "https://github.com/BaritoLog/Barito-Fluent-Plugin"
spec.license = "Apache-2.0"
test_files, files = `git ls-files -z`.split("\x0").partition do |f|
f.match(%r{^(test|spec|features)/})
end
spec.files = `git ls-files`.split($/)
spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = test_files
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.14"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency 'rspec', '~> 3.4'
spec.add_development_dependency 'timecop', '~> 0.9.1'
spec.add_development_dependency 'simplecov', '~> 0'
spec.add_development_dependency 'coveralls', '~> 0.8.21'
spec.add_development_dependency 'test-unit', '~> 3.2'
spec.add_development_dependency 'webmock', '~> 3.4'
spec.add_runtime_dependency "fluentd", "~> 0.12", ">= 0.12.0"
spec.add_runtime_dependency "rest-client", "~> 2"
end