adsp 1.0.0 → 1.0.1
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/README.md +4 -3
- data/lib/adsp/version.rb +1 -1
- data/test/common.rb +1 -1
- data/test/stream/abstract.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70733c27b273815a701e91375deddf32110fc88e80f1d0a8375e9fe9109e4bb6
|
|
4
|
+
data.tar.gz: 224e9f0536a1e6038c82e3c5c1aab4c216c3f72aeaed4c20fae9923ff9c968f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77d0e4202f65e2dd24f834b4871cccf794f3ae85eb9efd2bdf24161d850b1e16cccb3b9bd06f7c10d680f555b6bd1feb352ef379f325eafbcbc3befc15b6630f
|
|
7
|
+
data.tar.gz: e3b58df90a7b4e45274c0a257dfefbb909c811df65f0d6ac835cbda61ae91372ec2c5b175b0d74a33ffc357bf4b10bb6fbb7c58be2a8096e65e26e9fdd2e634e
|
data/README.md
CHANGED
|
@@ -80,6 +80,10 @@ Parallel.each large_datas do |large_data|
|
|
|
80
80
|
end
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
+
# Docs
|
|
84
|
+
|
|
85
|
+
Please review [rdoc generated docs](https://andrew-aladev.github.io/adsp).
|
|
86
|
+
|
|
83
87
|
## Options
|
|
84
88
|
|
|
85
89
|
| Option | Values | Default | Description |
|
|
@@ -198,9 +202,6 @@ Special asynchronous methods missing in `Zlib::GzipWriter`.
|
|
|
198
202
|
So it is possible to have asynchronous variants for these synchronous methods.
|
|
199
203
|
Behaviour is the same as `IO#write_nonblock` method.
|
|
200
204
|
|
|
201
|
-
All nonblock operations for file will raise `EBADF` error on Windows.
|
|
202
|
-
Setting file into nonblocking mode is [not available on Windows](https://github.com/ruby/ruby/blob/master/win32/win32.c#L4388).
|
|
203
|
-
|
|
204
205
|
```
|
|
205
206
|
#<<(object)
|
|
206
207
|
#print(*objects)
|
data/lib/adsp/version.rb
CHANGED
data/test/common.rb
CHANGED
data/test/stream/abstract.rb
CHANGED
|
@@ -84,7 +84,7 @@ module ADSP
|
|
|
84
84
|
instance.close_on_exec = true
|
|
85
85
|
assert_predicate instance, :close_on_exec?
|
|
86
86
|
|
|
87
|
-
# Fcntl
|
|
87
|
+
# Fcntl may not be available.
|
|
88
88
|
if Fcntl.const_defined? :F_GETFL
|
|
89
89
|
stats = instance.fcntl Fcntl::F_GETFL, 0
|
|
90
90
|
refute_nil stats
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: adsp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Aladjev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-06-
|
|
11
|
+
date: 2022-06-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: codecov
|