Sha256: c3f9661fd489f7c1f3cf85833e40587d5d0f9949dae46207fb289c735bc5e328

Contents?: true

Size: 1.19 KB

Versions: 3

Compression:

Stored size: 1.19 KB

Contents

# -*- encoding: utf-8 -*-
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.has_rdoc      = "yard"
	
	spec.required_ruby_version = ">= 2.0.0"

	spec.add_runtime_dependency "nio4r"
	spec.add_runtime_dependency "timers", "~> 4.1"
	
	spec.add_development_dependency "bundler", "~> 1.3"
	spec.add_development_dependency "process-daemon", "~> 1.0.0"
	spec.add_development_dependency "rspec", "~> 3.4.0"
	spec.add_development_dependency "rake"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
async-0.13.0 async.gemspec
async-0.12.0 async.gemspec
async-0.11.1 async.gemspec