Sha256: fe672b652c3acbd47463f3e52be00315555598477c63ec42e81bde6e2dacb05a

Contents?: true

Size: 1.55 KB

Versions: 4

Compression:

Stored size: 1.55 KB

Contents

begin
  require 'git-version-bump'
rescue LoadError
  nil
end

Gem::Specification.new do |s|
  s.name = "frankenstein"

  s.version = GVB.version rescue "0.0.0.1.NOGVB"
  s.date    = GVB.date    rescue Time.now.strftime("%Y-%m-%d")

  s.platform = Gem::Platform::RUBY

  s.summary  = "or, the Modern Prometheus"
  s.description = <<~EOF
    This is a collection of useful tools to help you in more easily
    instrumenting Ruby applications for the Prometheus monitoring
    system.
  EOF

  s.authors  = ["Matt Palmer"]
  s.email    = ["matt.palmer@discourse.org"]
  s.homepage = "https://github.com/discourse/frankenstein"

  s.files = `git ls-files -z`.split("\0").reject { |f| f =~ /^(G|spec|Rakefile)/ }

  s.required_ruby_version = ">= 2.3.0"

  # prometheus-client provides no guaranteed backwards compatibility,
  # and in fact happily breaks things with no notice, so we're stuck
  # with hard-coding a specific version to avoid unexpected disaster.
  s.add_runtime_dependency "prometheus-client", "0.8.0"
  s.add_runtime_dependency "rack", "~> 2.0"

  s.add_development_dependency 'bundler'
  s.add_development_dependency 'github-release'
  s.add_development_dependency 'git-version-bump'
  s.add_development_dependency 'guard-rspec'
  s.add_development_dependency 'guard-rubocop'
  s.add_development_dependency 'rack-test'
  s.add_development_dependency 'rake', "~> 12.0"
  s.add_development_dependency 'redcarpet'
  s.add_development_dependency 'rspec'
  s.add_development_dependency 'rubocop'
  s.add_development_dependency 'simplecov'
  s.add_development_dependency 'yard'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
frankenstein-1.2.0 frankenstein.gemspec
frankenstein-1.1.1 frankenstein.gemspec
frankenstein-1.1.0 frankenstein.gemspec
frankenstein-1.0.0 frankenstein.gemspec