Sha256: 865a3f8cb4fedef9cebd936a95cf639aa3a302333dc2677c9c8caeea5dedc2ce
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'sidekiq/prometheus/exporter/version' Gem::Specification.new do |spec| spec.name = 'sidekiq-prometheus-exporter' spec.version = Sidekiq::Prometheus::Exporter::VERSION spec.authors = ['Sergey Fedorov'] spec.email = %w(oni.strech@gmail.com) spec.summary = 'Prometheus exporter for the Sidekiq' spec.description = 'All the basic metrics prepared for Prometheus' spec.homepage = 'https://github.com/Strech/sidekiq-prometheus-exporter' if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' spec.metadata['rubygems_mfa_required'] = 'true' else raise 'RubyGems 2.0 or newer is required to protect against ' \ 'public gem pushes.' end spec.files = `git ls-files -z`.split("\x0").reject do |file| file.match(%r{^(.github|docker|examples|gemfiles|helm|test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |file| File.basename(file) } spec.require_paths = %w(lib) spec.required_ruby_version = '>= 2.3' spec.add_dependency 'rack', '>= 1.6.0' spec.add_dependency 'sidekiq', '>= 4.1.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sidekiq-prometheus-exporter-0.2.1 | sidekiq-prometheus-exporter.gemspec |