Sha256: ae4e46364fd367bd06c08beb4ffc7aaed4b105664f59961bfe24a5c0dd452c9b

Contents?: true

Size: 761 Bytes

Versions: 8

Compression:

Stored size: 761 Bytes

Contents

require_relative "lib/protocol/http/version"

Gem::Specification.new do |spec|
	spec.name = "protocol-http"
	spec.version = Protocol::HTTP::VERSION
	spec.authors = ["Samuel Williams"]
	spec.email = ["samuel.williams@oriontransfer.co.nz"]
	
	spec.summary = "Provides abstractions to handle HTTP protocols."
	spec.homepage = "https://github.com/socketry/protocol-http"
	spec.license = "MIT"
	
	spec.files = `git ls-files -z`.split("\x0").reject do |f|
		f.match(%r{^(test|spec|features)/})
	end
	
	spec.required_ruby_version = '~> 2.4'
	
	spec.require_paths = ["lib"]
	
	spec.add_development_dependency "covered"
	spec.add_development_dependency "bundler"
	spec.add_development_dependency "rake", "~> 10.0"
	spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
protocol-http-0.15.1 protocol-http.gemspec
protocol-http-0.15.0 protocol-http.gemspec
protocol-http-0.14.4 protocol-http.gemspec
protocol-http-0.14.3 protocol-http.gemspec
protocol-http-0.14.2 protocol-http.gemspec
protocol-http-0.14.1 protocol-http.gemspec
protocol-http-0.14.0 protocol-http.gemspec
protocol-http-0.13.1 protocol-http.gemspec