fluent-plugin-json.gemspec in fluent-plugin-json-0.1.0 vs fluent-plugin-json.gemspec in fluent-plugin-json-0.2.0
- old
+ new
@@ -3,16 +3,16 @@
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'fluent-plugin-json'
- spec.version = '0.1.0'
+ spec.version = '0.2.0'
spec.authors = ['Azeem Sajid']
spec.email = ['azeem.sajid@gmail.com']
- spec.summary = 'Fluentd filter plugin for JSON events with JSON Pointer Support'
- spec.description = 'Fluentd filter plugin for JSON events with JSON Pointer Support to pinpoint elements.'
+ spec.summary = 'Fluentd JSON filter plugin with JSON Pointer Support (RFC-6901)'
+ spec.description = 'Fluentd JSON filter plugin with JSON Pointer Support (RFC-6901) to pinpoint elements.'
spec.homepage = 'https://github.com/iamAzeem/fluent-plugin-json'
spec.license = 'Apache-2.0'
test_files, files = `git ls-files -z`.split("\x0").partition do |f|
f.match(%r{^(test|spec|features)/})
@@ -20,12 +20,13 @@
spec.files = files
spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = test_files
spec.require_paths = ['lib']
- spec.add_development_dependency 'bundler', '~> 1.14'
+ spec.add_development_dependency 'bundler', '~> 2.1', '>= 2.1.0'
spec.add_development_dependency 'hana', '~> 1.3', '>= 1.3.6'
spec.add_development_dependency 'rake', '~> 12.0'
+ spec.add_development_dependency 'simplecov', '~> 0.12', '<= 0.12.2'
spec.add_development_dependency 'test-unit', '~> 3.0'
spec.add_runtime_dependency 'fluentd', ['>= 0.14.10', '< 2']
spec.add_runtime_dependency 'hana', '~> 1.3', '>= 1.3.6'
end