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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7bd22e8463be2343be9f61ce80d54261f32aefed31b3f6b6550f38e41a5c0401
4
- data.tar.gz: 690e5d1c232c781f2bd48b099b01f8ee2d60a7b79aadec7255775110acfedf1f
3
+ metadata.gz: 70733c27b273815a701e91375deddf32110fc88e80f1d0a8375e9fe9109e4bb6
4
+ data.tar.gz: 224e9f0536a1e6038c82e3c5c1aab4c216c3f72aeaed4c20fae9923ff9c968f6
5
5
  SHA512:
6
- metadata.gz: 03e5c419cebc46df3e64aa5f71905358c0f7dc5d16a417b2239d22c9e93eca734258da71a819037d6c754b4c4a077a9d177e13f9ec8310ee87187d875606f120
7
- data.tar.gz: 5759268ce78057265a84f667966e0869973da161035498438ef88e9c41fc06bdc4984ac8fd73f3b58a0010b2971eabc932ff874d152487c5f8ab6d60d1c92e3d
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
@@ -3,5 +3,5 @@
3
3
 
4
4
  module ADSP
5
5
  # Abstract data stream processor version.
6
- VERSION = "1.0.0".freeze
6
+ VERSION = "1.0.1".freeze
7
7
  end
data/test/common.rb CHANGED
@@ -98,7 +98,7 @@ module ADSP
98
98
  file.write_nonblock "text"
99
99
  end
100
100
  rescue Errno::EBADF
101
- # Nonblock operations with files are not available on Windows.
101
+ # Nonblock operations with files may not be available.
102
102
  false
103
103
  else
104
104
  true
@@ -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 is not available on windows.
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.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-29 00:00:00.000000000 Z
11
+ date: 2022-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: codecov