Sha256: 5b4b3627b712c284aee95c9ef361cd38640a2ea5511a5f8c46e58cc3eda01045

Contents?: true

Size: 950 Bytes

Versions: 2

Compression:

Stored size: 950 Bytes

Contents

ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }

Gem::Specification.new do |s|
  s.name = %q{kgio}
  s.version = ENV["VERSION"].dup
  s.homepage = 'https://yhbt.net/kgio/'
  s.authors = ['kgio hackers']
  s.description = <<EOF
This is a legacy project, do not use it for new projects.  Ruby
2.3 and later should make this obsolete.  kgio provides
non-blocking I/O methods for Ruby without raising exceptions on
EAGAIN and EINPROGRESS.
EOF
  s.email = %q{kgio-public@yhbt.net}
  s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f|
    File.exist?(f)
  end
  s.files = manifest
  s.summary = 'kinder, gentler I/O for Ruby'
  s.test_files = Dir['test/test_*.rb']
  s.extensions = %w(ext/kgio/extconf.rb)

  s.add_development_dependency('test-unit', '~> 3.0')
  # s.add_development_dependency('strace_me', '~> 1.0') # Linux only

  s.licenses = %w(LGPL-2.1+)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kgio-2.11.4 kgio.gemspec
kgio-2.11.3 kgio.gemspec