-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfluent-plugin-norikra.gemspec
25 lines (21 loc) · 1.08 KB
/
fluent-plugin-norikra.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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "fluent-plugin-norikra"
spec.version = "0.4.4"
spec.authors = ["TAGOMORI Satoshi"]
spec.email = ["[email protected]"]
spec.description = %q{process events on fluentd with SQL like query, with built-in Norikra server if needed.}
spec.summary = %q{Fluentd plugin to do CEP with norikra}
spec.homepage = "https://github.com/norikra/fluent-plugin-norikra"
spec.license = "Apache-2.0"
spec.files = `git ls-files`.split($/)
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 "rack", "~> 1.6" # to prevent to install rack 2.0 (it requires ruby 2.2.2 or later)
spec.add_runtime_dependency "norikra-client", ">= 1.4.0"
spec.add_runtime_dependency "fluentd", "< 0.14.0"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "test-unit"
end