Sha256: 696550329b16307d9c367ee1305e3c07a81f7e6406b36a730b2b70bea38af105

Contents?: true

Size: 952 Bytes

Versions: 5

Compression:

Stored size: 952 Bytes

Contents

require_relative 'lib/protocol/http1/version'

Gem::Specification.new do |spec|
	spec.name          = "protocol-http1"
	spec.version       = Protocol::HTTP1::VERSION
	spec.authors       = ["Samuel Williams"]
	spec.email         = ["samuel.williams@oriontransfer.co.nz"]
	
	spec.summary       = "A low level implementation of the HTTP/1 protocol."
	spec.homepage      = "https://github.com/socketry/protocol-http1"
	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-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

5 entries across 5 versions & 1 rubygems

Version Path
protocol-http1-0.5.0 protocol-http1.gemspec
protocol-http1-0.4.1 protocol-http1.gemspec
protocol-http1-0.4.0 protocol-http1.gemspec
protocol-http1-0.3.0 protocol-http1.gemspec
protocol-http1-0.2.0 protocol-http1.gemspec