-
Notifications
You must be signed in to change notification settings - Fork 7
/
fluent-plugin-dynatrace.gemspec
33 lines (26 loc) · 1.31 KB
/
fluent-plugin-dynatrace.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
# frozen_string_literal: true
require './lib/fluent/plugin/dynatrace_constants'
require 'rake'
Gem::Specification.new do |gem|
gem.name = 'fluent-plugin-dynatrace'
gem.version = Fluent::Plugin::DynatraceOutputConstants.version
gem.authors = ['Dynatrace Open Source Engineering']
gem.email = ['[email protected]']
gem.summary = 'A fluentd output plugin for sending logs to the Dynatrace Generic log ingest API v2'
gem.homepage = 'https://github.com/dynatrace-oss/fluent-plugin-dynatrace'
gem.licenses = ['Apache-2.0']
gem.metadata = {
'bug_tracker_uri' => 'https://github.com/dynatrace-oss/fluent-plugin-dynatrace/issues',
'documentation_uri' => 'https://github.com/dynatrace-oss/fluent-plugin-dynatrace',
'source_code_uri' => 'https://github.com/dynatrace-oss/fluent-plugin-dynatrace'
}
gem.files = FileList['lib/**/*.rb', 'LICENSE']
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.7.0'
gem.add_runtime_dependency 'fluentd', ['>= 0.14.22', '< 2']
gem.add_development_dependency 'bundler', ['>= 2', '<3']
gem.add_development_dependency 'rake', '13.1.0'
gem.add_development_dependency 'rubocop', '1.59.0'
gem.add_development_dependency 'rubocop-rake', '0.6.0'
gem.add_development_dependency 'test-unit', '3.6.1'
end