Sha256: 02be2b51ea9ad8d9d58b9521d339ce1086392e743a21713d925a434aff6067a8

Contents?: true

Size: 1.55 KB

Versions: 2

Compression:

Stored size: 1.55 KB

Contents

# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "prom_multi_proc/version"

Gem::Specification.new do |spec|
  spec.name          = "prom_multi_proc_rb"
  spec.version       = PromMultiProc::VERSION
  spec.authors       = ["Andrew Tongen"]
  spec.email         = ["atongen@gmail.com"]

  spec.summary       = %q{A ruby library for collecting prometheus metrics within forking servers}
  spec.description   = %q{A ruby library for collecting prometheus metrics within forking servers}
  spec.homepage      = "https://github.com/atongen/prom_multi_proc_rb"
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata["allowed_push_host"] = "https://rubygems.org"
  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 |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "bin"
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", ">= 1.15"
  spec.add_development_dependency "rake", ">= 12.3.3"
  spec.add_development_dependency "rspec", "~> 3.9"
  spec.add_development_dependency "rspec-collection_matchers", "~> 1.2"

  spec.add_dependency "concurrent-ruby", "~> 1.1"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
prom_multi_proc_rb-0.1.7 prom_multi_proc_rb.gemspec
prom_multi_proc_rb-0.1.6 prom_multi_proc_rb.gemspec