Sha256: 57514db2673ef39ac339f60a814d78c061171967547825687176eaa352ab55c2

Contents?: true

Size: 1.01 KB

Versions: 2

Compression:

Stored size: 1.01 KB

Contents

require_relative "lib/protocol/http2/version"

Gem::Specification.new do |spec|
	spec.name          = "protocol-http2"
	spec.version       = Protocol::HTTP2::VERSION
	spec.authors       = ["Samuel Williams"]
	spec.email         = ["samuel.williams@oriontransfer.co.nz"]
	
	spec.summary       = "A low level implementation of the HTTP/2 protocol."
	spec.homepage      = "https://github.com/socketry/protocol-http2"
	spec.license       = "MIT"
	
	spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
		`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
	end
	
	spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
	spec.require_paths = ["lib"]
	
	spec.required_ruby_version = '~> 2.5'
	
	spec.add_dependency "protocol-hpack", "~> 1.4"
	spec.add_dependency "protocol-http", "~> 0.18"
	
	spec.add_development_dependency "covered"
	spec.add_development_dependency "bake-bundler"
	spec.add_development_dependency "bundler"
	spec.add_development_dependency "rspec", "~> 3.0"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
protocol-http2-0.14.0 protocol-http2.gemspec
protocol-http2-0.13.3 protocol-http2.gemspec