-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfluent-plugin-oci-logging-analytics.gemspec
executable file
·37 lines (31 loc) · 1.76 KB
/
fluent-plugin-oci-logging-analytics.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
## Copyright (c) 2021, 2024 Oracle and/or its affiliates.
## The Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/
require_relative './lib/fluent/version/version'
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-oci-logging-analytics"
spec.version = Version::VERSION
spec.authors = ["Oracle","OCI Observability: Logging Analytics"]
spec.email = ["[email protected]"]
spec.summary = %q{Fluentd output plugin for OCI Logging Analytics.}
spec.description = %q{OCI Logging Analytics Fluentd output plugin for ingesting the collected log events to OCI Logging Analytics.}
spec.license = "UPL-1.0"
spec.files = Dir.glob("{bin,lib}/**/*")
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.6.0"
spec.metadata = {
"documentation_uri" => "https://docs.oracle.com/en/learn/oci_logging_analytics_fluentd/",
"source_code_uri" => "https://github.com/oracle-quickstart/oci-logan-fluentd-output-plugin",
"changelog_uri" => "https://github.com/oracle-quickstart/oci-logan-fluentd-output-plugin/blob/main/CHANGELOG.md"
}
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "test-unit", "~> 3.0"
spec.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"]
spec.add_runtime_dependency 'rubyzip', '~> 2.3.2'
spec.add_runtime_dependency "oci", "~>2.16"
spec.add_runtime_dependency "prometheus-client", "~>4.0"
spec.add_runtime_dependency "yajl-ruby", '~> 1.4', '>= 1.4.3'
end