Sha256: 8ff2f07cfcdb6e9404622015028729a76652f914bb097e59469ea26cc6a4ff39

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

require_relative "lib/freno/client/version"

Gem::Specification.new do |spec|
  spec.name = "freno-client"
  spec.version = Freno::Client::VERSION
  spec.summary = "A library for interacting with Freno, the throttler service"
  spec.description = <<~DESC.gsub(/\s+/, " ")
    freno-client is a Ruby library that interacts with Freno using HTTP.
    Freno is a throttling service and its source code is available at
    https://github.com/github/freno
  DESC

  spec.author = "GitHub"
  spec.email = "opensource+freno-client@github.com"
  spec.license = "MIT"
  spec.homepage = "https://github.com/github/freno-client"

  spec.metadata = {
    "allowed_push_host" => "https://rubygems.org",
    "bug_tracker_uri" => "https://github.com/github/freno-client/issues",
    "homepage_uri" => "https://github.com/github/freno-client",
    "rubygems_mfa_required" => "true",
    "source_code_uri" => "https://github.com/github/freno-client"
  }

  spec.required_ruby_version = ">= 3.0"
  spec.add_dependency "faraday", "< 3"

  spec.files = Dir.glob(["freno-client.gemspec", "lib/**/*.rb", "LICENSE.txt"])
  spec.extra_rdoc_files = ["README.md"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
freno-client-0.9.0 freno-client.gemspec