httpx/httpx.gemspec
HoneyryderChuck 273cdd45b5 rubocoped
2018-02-13 22:19:05 +00:00

28 lines
950 B
Ruby

# frozen_string_literal: true
require File.expand_path("../lib/httpx/version", __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Tiago Cardoso"]
gem.email = ["cardoso_tiago@hotmail.com"]
gem.description = <<-DESCRIPTION.strip.gsub(/\s+/, " ")
A client library for making HTTP requests from Ruby.
DESCRIPTION
gem.summary = "HTTPX, to the future, and beyond"
gem.homepage = "https://gitlab.com/honeyryderchuck/httpx"
gem.licenses = ["Apache 2.0"]
gem.files = %w[LICENSE.txt README.md Rakefile] + Dir["doc/**/*.{rdoc,txt}"] + Dir["{lib}/**/*.{rb,RB}"]
gem.name = "httpx"
gem.require_paths = ["lib"]
gem.version = HTTPX::VERSION
gem.add_runtime_dependency "http-2", ">= 0.9.0"
gem.add_runtime_dependency "http-form_data", ">= 2.0.0", "< 3"
gem.add_runtime_dependency "http_parser.rb", ">= 0.6.0"
gem.add_development_dependency "http-cookie", "~> 1.0"
end