Sha256: df3c487a080dc74854b34541d0d6d0c1533af49224615a3e4554e9fa6e8e63e1

Contents?: true

Size: 706 Bytes

Versions: 1

Compression:

Stored size: 706 Bytes

Contents

# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ezclient/version"

Gem::Specification.new do |spec|
  spec.required_ruby_version = ">= 3.0"

  spec.name = "ezclient"
  spec.version = EzClient::VERSION
  spec.authors = ["Yuri Smirnov"]
  spec.email = ["tycooon@yandex.ru", "oss@umbrellio.biz"]

  spec.summary = "An HTTP gem wrapper for easy persistent connections and more."
  spec.homepage = "https://github.com/umbrellio/ezclient"
  spec.license = "MIT"

  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^spec/}) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "http", ">= 4"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ezclient-1.7.0 ezclient.gemspec