io-wait 0.2.2.pre1-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dda24b1840ad7d56f8f2410069a04e48dc98dc3e208d2f709f695c23c267c88f
4
+ data.tar.gz: 115b2fc6edf3910834059d2cfead8ece8bf2a8f74d776d8bb2ffeeba150ed1af
5
+ SHA512:
6
+ metadata.gz: 81cef8870d1a7c7a572c37a34a9d1c2d466f0909e42b0f3cf631bf19b32411a5e4bd957c39db30c5e608727018ab3d1c09f595efd0e63e65f6f5e1942af598db
7
+ data.tar.gz: 83d377aca6a0c22db485ddf228b9ec09c471e9c61b8126e5f588230334cc2e5f25057801573b66a03487c1c3cef2b509bf3975ac7ecb06484d9669e08b59bd33
data/COPYING ADDED
@@ -0,0 +1,56 @@
1
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
2
+ You can redistribute it and/or modify it under either the terms of the
3
+ 2-clause BSDL (see the file BSDL), or the conditions below:
4
+
5
+ 1. You may make and give away verbatim copies of the source form of the
6
+ software without restriction, provided that you duplicate all of the
7
+ original copyright notices and associated disclaimers.
8
+
9
+ 2. You may modify your copy of the software in any way, provided that
10
+ you do at least ONE of the following:
11
+
12
+ a. place your modifications in the Public Domain or otherwise
13
+ make them Freely Available, such as by posting said
14
+ modifications to Usenet or an equivalent medium, or by allowing
15
+ the author to include your modifications in the software.
16
+
17
+ b. use the modified software only within your corporation or
18
+ organization.
19
+
20
+ c. give non-standard binaries non-standard names, with
21
+ instructions on where to get the original software distribution.
22
+
23
+ d. make other distribution arrangements with the author.
24
+
25
+ 3. You may distribute the software in object code or binary form,
26
+ provided that you do at least ONE of the following:
27
+
28
+ a. distribute the binaries and library files of the software,
29
+ together with instructions (in the manual page or equivalent)
30
+ on where to get the original distribution.
31
+
32
+ b. accompany the distribution with the machine-readable source of
33
+ the software.
34
+
35
+ c. give non-standard binaries non-standard names, with
36
+ instructions on where to get the original software distribution.
37
+
38
+ d. make other distribution arrangements with the author.
39
+
40
+ 4. You may modify and include the part of the software into any other
41
+ software (possibly commercial). But some files in the distribution
42
+ are not written by the author, so that they are not under these terms.
43
+
44
+ For the list of those files and their copying conditions, see the
45
+ file LEGAL.
46
+
47
+ 5. The scripts and library files supplied as input to or produced as
48
+ output from the software do not automatically fall under the
49
+ copyright of the software, but belong to whomever generated them,
50
+ and may be sold commercially, and may be aggregated with this
51
+ software.
52
+
53
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
54
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
55
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
56
+ PURPOSE.
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in io-wait.gemspec
4
+ gemspec
5
+
6
+ group :development do
7
+ gem "rake"
8
+ gem "rake-compiler"
9
+ gem "test-unit"
10
+ gem 'ruby-maven', :platforms => :jruby
11
+ end
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # io-wait
2
+
3
+ This gem provides the feature for waiting until IO is readable or writable without blocking.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'io-wait'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install io-wait
20
+
21
+ ## Development
22
+
23
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
24
+
25
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
26
+
27
+ ## Contributing
28
+
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ruby/io-wait.
@@ -0,0 +1,2 @@
1
+ require 'io/wait.jar'
2
+ JRuby::Util.load_ext("org.jruby.ext.io.wait.IOWaitLibrary")
data/lib/io/wait.jar ADDED
Binary file
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: io-wait
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.2.pre1
5
+ platform: java
6
+ authors:
7
+ - Nobu Nakada
8
+ - Charles Oliver Nutter
9
+ autorequire:
10
+ bindir: exe
11
+ cert_chain: []
12
+ date: 2022-02-03 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Waits until IO is readable or writable without blocking.
15
+ email:
16
+ - nobu@ruby-lang.org
17
+ - headius@headius.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - COPYING
23
+ - Gemfile
24
+ - README.md
25
+ - ext/java/lib/io/wait.rb
26
+ - lib/io/wait.jar
27
+ homepage: https://github.com/ruby/io-wait
28
+ licenses:
29
+ - Ruby
30
+ - BSD-2-Clause
31
+ metadata:
32
+ homepage_uri: https://github.com/ruby/io-wait
33
+ source_code_uri: https://github.com/ruby/io-wait
34
+ post_install_message:
35
+ rdoc_options: []
36
+ require_paths:
37
+ - lib
38
+ - ext/java/lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">"
47
+ - !ruby/object:Gem::Version
48
+ version: 1.3.1
49
+ requirements: []
50
+ rubygems_version: 3.2.29
51
+ signing_key:
52
+ specification_version: 4
53
+ summary: Waits until IO is readable or writable without blocking.
54
+ test_files: []