1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
Gem::Specification.new do |s|
s.name = %q{kgio}
s.version = "2.11.4"
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
|