forked from arcivanov/fluent-plugin-json-in-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluent-plugin-json-in-json.gemspec
25 lines (21 loc) · 1.1 KB
/
fluent-plugin-json-in-json.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-json-in-json"
spec.version = "1.0.0"
spec.authors = ["Gavin M. Roy", "Arcadiy Ivanov"]
spec.email = ["gavinmroy@gmail.com", "arcadiy@ivanov.biz"]
spec.description = %q{Parser plugin that parses JSON attributes with JSON strings in them}
spec.summary = %q{Parser plugin that parses JSON attributes with JSON strings in them}
spec.homepage = "https://github.com/arcivanov/fluent-plugin-json-in-json"
spec.license = "BSD"
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 'fluentd', ['>= 0.14.0', '< 2']
spec.add_runtime_dependency 'yajl-ruby', '~> 1.0'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'bundler', '~> 1.16'
spec.add_development_dependency 'test-unit', ['~> 3.2']
spec.add_development_dependency 'test-unit-rr', ['~> 1.0']
end