Sha256: 9d43847dfa1c1ce7ef0900844600f86a742b2871ff26a111202a5846a9519f8e
Contents?: true
Size: 1.14 KB
Versions: 5
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.2.2" 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 "rake" spec.add_development_dependency "bundler" end
Version data entries
5 entries across 5 versions & 2 rubygems
Version | Path |
---|---|
nio4r-2.1.0-java | nio4r.gemspec |
nio4r-2.1.0 | nio4r.gemspec |
enju_leaf-1.2.1 | vendor/bundle/ruby/2.3/gems/nio4r-2.0.0/nio4r.gemspec |
nio4r-2.0.0-java | nio4r.gemspec |
nio4r-2.0.0 | nio4r.gemspec |