Sha256: c4b783224c1f0435d5b70d1b46069df443ac676ca765469f07dfff680ec733c6
Contents?: true
Size: 1000 Bytes
Versions: 2
Compression:
Stored size: 1000 Bytes
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.add_dependency "protocol-hpack", "~> 1.3" spec.add_dependency "protocol-http", "~> 0.2" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
protocol-http2-0.7.2 | protocol-http2.gemspec |
protocol-http2-0.7.1 | protocol-http2.gemspec |