io-wait 0.4.0 → 1.0.0
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 +4 -4
- data/.document +0 -4
- data/README.md +1 -25
- data/lib/io/wait.rb +1 -0
- metadata +6 -10
- data/_doc/io.rb +0 -3
- data/ext/io/wait/depend +0 -18
- data/ext/io/wait/extconf.rb +0 -4
- data/ext/io/wait/wait.c +0 -23
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e840aeccf62ace0f185f0c01a338dc56d2d3a9dd460f1d6c8c9a1b8922a496e7
|
|
4
|
+
data.tar.gz: 479cc43d9ea99894a26fdf077b9aba104dd94eb415203ff37118d40661a9bbda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf81ae33a384f6c6de2d14743d5d85bf3796a782f08310cc558ba435e4ecbc9f044fb0db330e2f00112729017f7d6439b71bd482fdc3bf7841d2c94e97dd92a0
|
|
7
|
+
data.tar.gz: 202d42a5ce573fc50252c0bcdcb7a5c1c820d091c12ca520212e735528ddfd226a53818852de686bced1ffbed7dd6cab72ac920a2e58af4f80709b94e24f0e11
|
data/.document
CHANGED
data/README.md
CHANGED
|
@@ -2,28 +2,4 @@
|
|
|
2
2
|
|
|
3
3
|
This gem provides the feature for waiting until IO is readable or writable without blocking.
|
|
4
4
|
|
|
5
|
-
|
|
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.
|
|
5
|
+
**Note:** This gem is empty and deprecated. All functionality was moved into core Ruby as of version 3.2.
|
data/lib/io/wait.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
warn "The io-wait gem is deprecated; all functionality ships with Ruby 3.2 and higher."
|
metadata
CHANGED
|
@@ -1,32 +1,28 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: io-wait
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nobu Nakada
|
|
8
8
|
- Charles Oliver Nutter
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
13
|
+
description: 'Deprecated: All functionality ships with Ruby 3.2 and higher.'
|
|
14
14
|
email:
|
|
15
15
|
- nobu@ruby-lang.org
|
|
16
16
|
- headius@headius.com
|
|
17
17
|
executables: []
|
|
18
|
-
extensions:
|
|
19
|
-
- ext/io/wait/extconf.rb
|
|
18
|
+
extensions: []
|
|
20
19
|
extra_rdoc_files: []
|
|
21
20
|
files:
|
|
22
21
|
- ".document"
|
|
23
22
|
- ".rdoc_options"
|
|
24
23
|
- COPYING
|
|
25
24
|
- README.md
|
|
26
|
-
-
|
|
27
|
-
- ext/io/wait/depend
|
|
28
|
-
- ext/io/wait/extconf.rb
|
|
29
|
-
- ext/io/wait/wait.c
|
|
25
|
+
- lib/io/wait.rb
|
|
30
26
|
homepage: https://github.com/ruby/io-wait
|
|
31
27
|
licenses:
|
|
32
28
|
- Ruby
|
|
@@ -50,5 +46,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
50
46
|
requirements: []
|
|
51
47
|
rubygems_version: 3.6.7
|
|
52
48
|
specification_version: 4
|
|
53
|
-
summary:
|
|
49
|
+
summary: 'Deprecated: All functionality ships with Ruby 3.2 and higher.'
|
|
54
50
|
test_files: []
|
data/_doc/io.rb
DELETED
data/ext/io/wait/depend
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# AUTOGENERATED DEPENDENCIES START
|
|
2
|
-
wait.o: $(RUBY_EXTCONF_H)
|
|
3
|
-
wait.o: $(arch_hdrdir)/ruby/config.h
|
|
4
|
-
wait.o: $(hdrdir)/ruby.h
|
|
5
|
-
wait.o: $(hdrdir)/ruby/assert.h
|
|
6
|
-
wait.o: $(hdrdir)/ruby/backward.h
|
|
7
|
-
wait.o: $(hdrdir)/ruby/defines.h
|
|
8
|
-
wait.o: $(hdrdir)/ruby/encoding.h
|
|
9
|
-
wait.o: $(hdrdir)/ruby/intern.h
|
|
10
|
-
wait.o: $(hdrdir)/ruby/io.h
|
|
11
|
-
wait.o: $(hdrdir)/ruby/missing.h
|
|
12
|
-
wait.o: $(hdrdir)/ruby/onigmo.h
|
|
13
|
-
wait.o: $(hdrdir)/ruby/oniguruma.h
|
|
14
|
-
wait.o: $(hdrdir)/ruby/ruby.h
|
|
15
|
-
wait.o: $(hdrdir)/ruby/st.h
|
|
16
|
-
wait.o: $(hdrdir)/ruby/subst.h
|
|
17
|
-
wait.o: wait.c
|
|
18
|
-
# AUTOGENERATED DEPENDENCIES END
|
data/ext/io/wait/extconf.rb
DELETED
data/ext/io/wait/wait.c
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: t -*- */
|
|
2
|
-
/**********************************************************************
|
|
3
|
-
|
|
4
|
-
io/wait.c -
|
|
5
|
-
|
|
6
|
-
$Author$
|
|
7
|
-
created at: Tue Aug 28 09:08:06 JST 2001
|
|
8
|
-
|
|
9
|
-
All the files in this distribution are covered under the Ruby's
|
|
10
|
-
license (see the file COPYING).
|
|
11
|
-
|
|
12
|
-
**********************************************************************/
|
|
13
|
-
|
|
14
|
-
#include "ruby.h" /* abi_version */
|
|
15
|
-
|
|
16
|
-
/*
|
|
17
|
-
* IO wait methods are built in ruby now, just for backward compatibility.
|
|
18
|
-
*/
|
|
19
|
-
|
|
20
|
-
void
|
|
21
|
-
Init_wait(void)
|
|
22
|
-
{
|
|
23
|
-
}
|