This repository was archived by the owner on Dec 30, 2025. It is now read-only.
forked from splunk/fluentd-hec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfluent-plugin-splunk-hec.gemspec
More file actions
45 lines (39 loc) · 1.78 KB
/
Copy pathfluent-plugin-splunk-hec.gemspec
File metadata and controls
45 lines (39 loc) · 1.78 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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.4'
spec.add_runtime_dependency 'multi_json', '~> 1.13'
spec.add_runtime_dependency 'net-http-persistent', '~> 3.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 12.0'
# required by fluent/test.rb
spec.add_development_dependency 'test-unit', '~> 3.0'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'webmock', '~> 3.5.0'
spec.add_development_dependency 'simplecov', '~> 0.16.1'
end