Sha256: 463a5c5791750b1e58930b81060fd2a76a50b0125bf64a61f43c7e3dfb861580
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = 'fluent-plugin-ssl-check' spec.version = '2.0.0' spec.authors = ['Thomas Tych'] spec.email = ['thomas.tych@gmail.com'] spec.summary = 'fluentd plugin to check ssl endpoint' spec.homepage = 'https://gitlab.com/ttych/fluent-plugin-ssl-check' spec.license = 'Apache-2.0' spec.required_ruby_version = '>= 2.7.0' spec.metadata['rubygems_mfa_required'] = 'true' _, files = `git ls-files -z`.split("\x0").partition do |f| f.match(%r{^(test|spec|features)/}) end spec.files = files spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bump', '~> 0.10.0' spec.add_development_dependency 'bundler', '~> 2.4' spec.add_development_dependency 'byebug', '~> 11.1', '>= 11.1.3' spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6' spec.add_development_dependency 'reek', '~> 6.1', '>= 6.1.4' spec.add_development_dependency 'rubocop', '~> 1.56' spec.add_development_dependency 'rubocop-rake', '~> 0.6.0' spec.add_development_dependency 'test-unit', '~> 3.6', '>= 3.6.1' spec.add_development_dependency 'timecop', '~> 0.9.6' spec.add_runtime_dependency 'fluentd', ['>= 0.14.10', '< 2'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-ssl-check-2.0.0 | fluent-plugin-ssl-check.gemspec |