Sha256: f5f2e614560e5fa2a646811ee90a0d9403ff1d917f7bd7d1f80a561a3c6b4bf7

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 KB

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.required_ruby_version = "~> 2.4"
	
	spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
	spec.require_paths = ["lib"]
	
	spec.add_dependency "protocol-http", "~> 0.13"
	
	spec.add_development_dependency "covered"
	spec.add_development_dependency "bundler"
	spec.add_development_dependency "rake", "~> 10.0"
	spec.add_development_dependency "rspec", "~> 3.0"
	spec.add_development_dependency "rspec-memory", "~> 1.0"
	spec.add_development_dependency "rspec-files", "~> 1.0"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
protocol-http1-0.10.2 protocol-http1.gemspec
protocol-http1-0.10.1 protocol-http1.gemspec