-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathfluent-plugin-datadog.gemspec
41 lines (34 loc) · 1.89 KB
/
fluent-plugin-datadog.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
# Unless explicitly stated otherwise all files in this repository are licensed
# under the Apache License Version 2.0.
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2018 Datadog, Inc.
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "fluent/plugin/version.rb"
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-datadog"
spec.version = DatadogFluentPlugin::VERSION
spec.authors = ["Datadog Solutions Team"]
spec.email = ["[email protected]"]
spec.summary = "Datadog output plugin for Fluent event collector"
spec.homepage = "http://datadoghq.com"
spec.license = "Apache-2.0"
spec.files = [".gitignore", "Gemfile", "LICENSE", "README.md", "Rakefile", "fluent-plugin-datadog.gemspec", "lib/fluent/plugin/version.rb", "lib/fluent/plugin/out_datadog.rb"]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "fluentd", [">= 1", "< 2"]
spec.add_runtime_dependency "net-http-persistent", '~> 4.0.1'
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "test-unit", '~> 3.1'
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "yajl-ruby", "~> 1.2"
spec.add_development_dependency 'webmock', "~> 3.6.0"
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/DataDog/fluent-plugin-datadog/issues',
'changelog_uri' => 'https://github.com/DataDog/fluent-plugin-datadog/blob/master/CHANGELOG.md',
'documentation_uri' => 'https://github.com/DataDog/fluent-plugin-datadog/blob/master/README.md',
'source_code_uri' => 'https://github.com/DataDog/fluent-plugin-datadog'
}
end