Sha256: ff2276b65856b5a11f00b9d9d00711976ee45d10f78b5b0413832d3913b7fcee

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

# -*- encoding: binary -*-

ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
test_files = manifest.grep(%r{\Atest/test_.*\.rb\z})

Gem::Specification.new do |s|
  s.name = %q{io_splice}
  s.version = ENV["VERSION"]

  s.authors = ["io_splice hackers"]
  s.date = Time.now.utc.strftime('%Y-%m-%d')
  s.description = File.read("README").split(/\n\n/)[1]
  s.email = %q{ruby.io.splice@librelist.com}
  s.extensions = %w(ext/io_splice/extconf.rb)

  s.extra_rdoc_files = File.readlines('.document').map! do |x|
    x.chomp!
    if File.directory?(x)
      manifest.grep(%r{\A#{x}/})
    elsif File.file?(x)
      x
    else
      nil
    end
  end.flatten.compact

  s.files = manifest
  s.homepage = %q{http://bogomips.org/ruby_io_splice/}
  s.summary = %q{zero-copy pipe I/O for Linux and Ruby}
  s.rdoc_options = [ "-Na", "-t", "io_splice - #{s.summary}" ]
  s.require_paths = %w(lib)
  s.rubyforge_project = %q{qrp}

  s.test_files = test_files

  # s.licenses = %w(LGPL) # accessor not compatible with older RubyGems
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
io_splice-2.2.0 io_splice.gemspec
io_splice-2.1.0 io_splice.gemspec
io_splice-2.0.0 io_splice.gemspec