forked from JNPRAutomate/fluent-plugin-juniper-telemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluent-plugin-juniper-telemetry.gemspec
24 lines (20 loc) · 1.07 KB
/
fluent-plugin-juniper-telemetry.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = "fluent-plugin-juniper-telemetry"
s.version = '0.3.0'
s.authors = ["Damien Garros"]
s.email = ["[email protected]"]
s.description = %q{Input plugin for Fluentd for Juniper devices telemetry data streaming : Jvision / analyticsd etc ..}
s.summary = %q{Input plugin for Fluentd for Juniper devices telemetry data streaming : Jvision / analyticsd etc ..}
s.homepage = "https://github.com/JNPRAutomate/fluentd-plugin-juniper-telemetry"
s.license = 'Apache 2.0'
#s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) }
s.files = Dir['lib/fluent/plugin/parser*.rb', 'lib/*.rb', 'lib/google/protobuf/*.rb' ]
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = %w(lib)
s.add_runtime_dependency "fluentd", ">= 0.12.29"
s.add_runtime_dependency "protobuf"
s.add_development_dependency "rake"
end