Sha256: 2bc5cc549b2c04228085cf5793eb6530b66d045a8a4a4bec3b013a829e2f2463
Contents?: true
Size: 1.27 KB
Versions: 3
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require_relative 'lib/sensu/plugins/minio/version' Gem::Specification.new do |spec| spec.name = 'sensu-plugins-minio' spec.version = Sensu::Plugins::Minio::VERSION spec.licenses = ['MIT'] spec.authors = ['Hauke Altmann', 'Jonathan Schlue'] spec.email = ['info@aboutsource.net'] spec.summary = 'Check if there are updates for the local '\ 'minio server instance' spec.description = 'Used to check for manual installed minio servers' spec.homepage = 'https://github.com/aboutsource/sensu-plugins-minio' spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.3.3' spec.executables = Dir.glob('bin/**/*.rb').map { |f| File.basename(f) } spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.add_dependency 'sensu-plugin', '~> 2.1' spec.add_development_dependency 'bundler', '~> 2.1' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.10' spec.add_development_dependency 'rubocop', '~> 0.54', '<= 0.81' spec.add_development_dependency 'webmock', '~> 3.3' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sensu-plugins-minio-1.0.0 | sensu-plugins-minio.gemspec |
sensu-plugins-minio-0.0.7 | sensu-plugins-minio.gemspec |
sensu-plugins-minio-0.0.6 | sensu-plugins-minio.gemspec |