Sha256: 7f96dc8faade703274c6ecfb8091d1bca0ad476cf760ddfa905dbbbce2465a70

Contents?: true

Size: 817 Bytes

Versions: 8

Compression:

Stored size: 817 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.0'
	
	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.8.0 protocol-http.gemspec
protocol-http-0.7.0 protocol-http.gemspec
protocol-http-0.6.0 protocol-http.gemspec
protocol-http-0.5.0 protocol-http.gemspec
protocol-http-0.4.1 protocol-http.gemspec
protocol-http-0.4.0 protocol-http.gemspec
protocol-http-0.3.0 protocol-http.gemspec
protocol-http-0.2.0 protocol-http.gemspec