Sha256: f51cf6aaa12ccd70fce5c176b9c9b8d7ad7576e43c148bcfd9eff383a05635e0

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

# -*- encoding: utf-8 -*-
require_relative 'lib/async/container/version'

Gem::Specification.new do |spec|
	spec.name          = "async-container"
	spec.version       = Async::Container::VERSION
	spec.authors       = ["Samuel Williams"]
	spec.email         = ["samuel.williams@oriontransfer.co.nz"]
	spec.description   = <<-EOF
		Provides containers for servers which provide concurrency policies, e.g. threads, processes.
	EOF
	spec.summary       = "Async is an asynchronous I/O framework based on nio4r."
	spec.homepage      = "https://github.com/socketry/async-container"
	spec.license       = "MIT"

	spec.files         = `git ls-files`.split($/)
	spec.executables   = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
	spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
	spec.require_paths = ["lib"]
	spec.has_rdoc      = "yard"
	
	spec.required_ruby_version = "~> 2.0"

	spec.add_runtime_dependency "async", "~> 0.16"
	spec.add_development_dependency "async-rspec", "~> 1.1"
	
	spec.add_development_dependency "bundler", "~> 1.3"
	spec.add_development_dependency "rspec", "~> 3.6"
	spec.add_development_dependency "rake"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
async-container-0.2.0 async-container.gemspec
async-container-0.1.0 async-container.gemspec