Sha256: 0e5780a06a64ef4b2d95981a8e5c2ba7582d3a4081c704193a1e2cfb2b4ef840
Contents?: true
Size: 979 Bytes
Versions: 1
Compression:
Stored size: 979 Bytes
Contents
_VERSION = "0.2.0" Gem::Specification.new do |spec| spec.name = "io-wait" spec.version = _VERSION spec.authors = ["Nobu Nakada"] spec.email = ["nobu@ruby-lang.org"] spec.summary = %q{Waits until IO is readable or writable without blocking.} spec.description = %q{Waits until IO is readable or writable without blocking.} spec.homepage = "https://github.com/ruby/io-wait" spec.licenses = ["Ruby", "BSD-2-Clause"] spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0") spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject do |f| f.match(%r{\A(?:test|spec|features)/|\A\.(?:git|travis)}) end end spec.extensions = %w[ext/io/wait/extconf.rb] spec.bindir = "exe" spec.executables = [] spec.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
io-wait-0.2.0 | io-wait.gemspec |