dtas 0.16.0 → 0.16.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: d887afd41dc71abd3448e72c3d33d188e4629b8dbc576af3237c3bd47b246581
4
- data.tar.gz: cf5262f4c45becd00e75dc2f1c3de5ab05b27bd9a029c9fef458faec5cc58303
3
+ metadata.gz: 3b74b23fa5bd7ea3dc3cf6a7799db5942501eebe4e83a8a2d20040124bd54197
4
+ data.tar.gz: fbda6adfd9bcb6840d0dbcc2e9591df1a7f82b1c9ab39e3f85b05bcdef995443
5
5
  SHA512:
6
- metadata.gz: 94f470ad51f9723bf5d3161b445d0434e6e5e45349fc6c5227ecb80aa0c9d1409357979cd8f97edc909bed6c65b75494757b731d2f7cd97f4ed345640465aa7a
7
- data.tar.gz: 631dc0a9b16771662bb6f8215ab9ee71acd078ac7cae26f1b90408106da840909d59f99cdf569425b2be05f2c9018f032ad426405ca1bbe1df28af005d2f020c
6
+ metadata.gz: aad4a37ebae9e0452f173f6792637bfc1fc2742fbe5b8acaecff9eea7d51679430865ba2ebef2c056222bfe54a4d839423dc5f4ce34cff6380d853e4397a3d15
7
+ data.tar.gz: 0fbdd8d7f01047a8d700138adac8413c50492a646d67cc30752ec4b5468f4a5b28204d6234ed0fb909c49b19c5dd5bf9bcb1fa34bba8f500dcb6eaf6dc2dd775
@@ -5,7 +5,7 @@
5
5
  CONSTANT = "DTAS::VERSION"
6
6
  RVF = "lib/dtas/version.rb"
7
7
  GVF = "GIT-VERSION-FILE"
8
- DEF_VER = "v0.16.0"
8
+ DEF_VER = "v0.16.1"
9
9
  vn = DEF_VER
10
10
 
11
11
  # First see if there is a version file (included in release tarballs),
data/INSTALL CHANGED
@@ -39,10 +39,10 @@ For future upgrades of dtas (upgrades to dtas-linux will be infrequent)
39
39
 
40
40
  Grab the latest tarball from our HTTPS site:
41
41
 
42
- https://80x24.org/dtas/2019/dtas-0.16.0.tar.gz
42
+ https://80x24.org/dtas/2019/dtas-0.16.1.tar.gz
43
43
 
44
- $ tar zxvf dtas-0.16.0.tar.gz
45
- $ cd dtas-0.16.0
44
+ $ tar zxvf dtas-0.16.1.tar.gz
45
+ $ cd dtas-0.16.1
46
46
  $ sudo ruby setup.rb
47
47
 
48
48
  GNU/Linux users may optionally install the "sleepy_penguin" package:
@@ -5,7 +5,7 @@
5
5
  # for Linux users
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{dtas-linux}
8
- s.version = '1.0.0'
8
+ s.version = '1.1.0'
9
9
  s.authors = ["dtas hackers"]
10
10
  s.summary = "meta-package for dtas users on the Linux kernel"
11
11
  s.description = "gives small performance improvements for dtas users\n" \
@@ -32,7 +32,7 @@ def discard(bytes)
32
32
  def broadcast_one(targets, limit = nil)
33
33
  # single output is always non-blocking
34
34
  limit ||= MAX_AT_ONCE_1
35
- s = SleepyPenguin.splice(@to_io, targets[0], limit, F_MOVE, TRY)
35
+ s = SleepyPenguin.splice(@to_io, targets[0], limit, F_MOVE|F_NONBLOCK, TRY)
36
36
  if Symbol === s
37
37
  targets # our one and only target blocked on write
38
38
  else
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dtas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.16.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - dtas hackers