Sha256: 15f5360f32c0a1a75bfd8228fa840838a91f502f5a04258cf0f30f150b52b63d

Contents?: true

Size: 1.24 KB

Versions: 13

Compression:

Stored size: 1.24 KB

Contents

require_relative 'lib/async/version'

Gem::Specification.new do |spec|
	spec.name          = "async"
	spec.version       = Async::VERSION
	spec.authors       = ["Samuel Williams"]
	spec.email         = ["samuel.williams@oriontransfer.co.nz"]
	spec.description   = <<-EOF
		Async provides a modern asynchronous I/O framework for Ruby, based
		on nio4r. It implements the reactor pattern, providing both IO and timer
		based events.
	EOF
	spec.summary       = "Async is an asynchronous I/O framework based on nio4r."
	spec.homepage      = "https://github.com/socketry/async"
	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.required_ruby_version = ">= 2.2.7"
	
	spec.add_runtime_dependency "nio4r", "~> 2.3"
	spec.add_runtime_dependency "timers", "~> 4.1"
	spec.add_runtime_dependency "console", "~> 1.0"
	
	spec.add_development_dependency "async-rspec", "~> 1.1"
	
	spec.add_development_dependency "covered", "~> 0.10"
	
	spec.add_development_dependency "bundler"
	spec.add_development_dependency "rspec", "~> 3.6"
	spec.add_development_dependency "rake"
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
async-1.24.2 async.gemspec
async-1.24.1 async.gemspec
async-1.24.0 async.gemspec
async-1.23.0 async.gemspec
async-1.22.2 async.gemspec
async-1.22.1 async.gemspec
async-1.22.0 async.gemspec
async-1.21.0 async.gemspec
async-1.20.1 async.gemspec
async-1.20.0 async.gemspec
async-1.19.0 async.gemspec
async-1.18.0 async.gemspec
async-1.17.1 async.gemspec