-
Notifications
You must be signed in to change notification settings - Fork 90
/
fluent-plugin-splunk-hec.gemspec
52 lines (44 loc) · 2.03 KB
/
fluent-plugin-splunk-hec.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'fluent-plugin-splunk-hec'
spec.version = File.read('VERSION')
spec.authors = ['Splunk Inc.']
spec.email = ['DataEdge@splunk.com']
spec.summary = 'Fluentd plugin for Splunk HEC.'
spec.description = 'A fluentd output plugin created by Splunk
that writes events to splunk indexers over HTTP Event Collector API.'
spec.homepage = 'https://github.com/splunk/fluent-plugin-splunk-hec'
spec.license = 'Apache-2.0'
# Prevent pushing this gem to RubyGems.org.
# To allow pushes either set the 'allowed_push_host' to allow
# pushing to a single host or delete this section to allow pushing to any host.
# if spec.respond_to?(:metadata)
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
# else
# raise "RubyGems 2.0 or newer is required to protect against " \
# "public gem pushes."
# end
spec.require_paths = ['lib']
spec.test_files = Dir.glob('test/**/**.rb')
spec.files = %w[
CODE_OF_CONDUCT.md README.md LICENSE
fluent-plugin-splunk-hec.gemspec
Gemfile Gemfile.lock
Rakefile VERSION
] + Dir.glob('lib/**/**').reject(&File.method(:directory?))
spec.required_ruby_version = '>= 2.3.0'
spec.add_runtime_dependency 'fluentd', '>= 1.5'
spec.add_runtime_dependency 'multi_json', '~> 1.13'
spec.add_runtime_dependency 'net-http-persistent', '~> 4.0'
spec.add_runtime_dependency 'openid_connect', '~> 1.1.8'
spec.add_runtime_dependency 'prometheus-client', '>= 2.1.0'
spec.add_runtime_dependency 'json-jwt', '~> 1.15.0'
spec.add_runtime_dependency 'rack-oauth2', '~> 1.19'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '>= 12.0'
# required by fluent/test.rb
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'simplecov', '~> 0.16.1'
spec.add_development_dependency 'test-unit', '~> 3.0'
spec.add_development_dependency 'webmock', '~> 3.5.0'
end