-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfluent-plugin-jsonish.gemspec
20 lines (19 loc) · 1.31 KB
/
fluent-plugin-jsonish.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.name = 'fluent-plugin-jsonish'
gem.version = ENV.key?('RUBYGEM_VERSION') ? ENV['RUBYGEM_VERSION'] : '1.0.1'
gem.authors = ['Alex Yamauchi']
gem.email = ['[email protected]']
gem.homepage = 'https://github.com/bodhi-space/fluent-plugin-jsonish'
gem.description = %q{Input parser for records which require minor text processing before they can be parsed as JSON}
gem.summary = %q{Input parser for records which require minor text processing before they can be parsed as JSON. Also allows names of standard Time parser methods to be passed as time_format arguments and sets a reasonable default (iso8601).}
gem.homepage = 'https://github.com/bodhi-space/fluent-plugin-jsonish'
gem.license = 'Apache-2.0'
gem.add_runtime_dependency 'fluentd', '>= 0.14.0'
gem.files = `git ls-files`.split("\n")
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.signing_key = File.expand_path( ENV.key?('RUBYGEM_SIGNING_KEY') ? ENV['RUBYGEM_SIGNING_KEY'] : '~/certs/[email protected]' ) if $0 =~ /\bgem[\.0-9]*\z/
gem.cert_chain = %w[certs/[email protected]]
end