Sha256: 50298d7ac59ec22e05626cc722c1385f6c1c3beeb795600a44d581c7926d9e8c

Contents?: true

Size: 1.14 KB

Versions: 8

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

require File.expand_path("../lib/nio/version", __FILE__)

Gem::Specification.new do |spec|
  spec.authors       = ["Tony Arcieri"]
  spec.email         = ["bascule@gmail.com"]
  spec.homepage      = "https://github.com/socketry/nio4r"
  spec.license       = "MIT"
  spec.summary       = "New IO for Ruby"
  spec.description   = <<-DESCRIPTION.strip.gsub(/\s+/, " ")
     Cross-platform asynchronous I/O primitives for scalable network clients
     and servers. Inspired by the Java NIO API, but simplified for ease-of-use.
  DESCRIPTION

  spec.executables   = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  spec.files         = `git ls-files`.split("\n")
  spec.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  spec.name          = "nio4r"
  spec.require_paths = ["lib"]
  spec.version       = NIO::VERSION

  spec.required_ruby_version = ">= 2.3"

  if defined? JRUBY_VERSION
    spec.files << "lib/nio4r_ext.jar"
    spec.platform = "java"
  else
    spec.extensions = ["ext/nio4r/extconf.rb"]
  end

  spec.add_development_dependency "bundler"
  spec.add_development_dependency "rake"
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
nio4r-2.5.1-java nio4r.gemspec
nio4r-2.5.1 nio4r.gemspec
nio4r-2.5.0-java nio4r.gemspec
nio4r-2.5.0 nio4r.gemspec
spiral_form-0.1.1 vendor/bundle/gems/nio4r-2.4.0/nio4r.gemspec
spiral_form-0.1.0 vendor/bundle/gems/nio4r-2.4.0/nio4r.gemspec
nio4r-2.4.0-java nio4r.gemspec
nio4r-2.4.0 nio4r.gemspec