tiny_tcp_service 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/tiny_tcp_service.rb +2 -3
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9153074bb46f8f6cbf51c4a864bfb2fa2eabb63232669d708e61502c931324dd
4
- data.tar.gz: 401a36c00244ebecad0a6c8ee3cae185860edac655270d4cf4eb70f39392a097
3
+ metadata.gz: 166a2118d50973568da49c7afa4809187a3e3782ff1bf4393c14d3b605813ee3
4
+ data.tar.gz: a2e8f63bff4b0b7d02b938420cc88eab1c774480bc4b65f15ba64d020a2e7608
5
5
  SHA512:
6
- metadata.gz: 77f635cb2880c4578db3c72f0190a47f4939dc1f479fc8583e6f39d3eb84368beb1cf1c1ca2f7d146309cb78b3427084a36e9a4e7ddc8b0e886793a496f5f96c
7
- data.tar.gz: b7766536ee659434cdaa7d1055611784837baf6fb90f9f8e7675d8d29a519fe8d3df66dc84c8cf035f2b1645abaff63538fc263af429963448db11cc58b3507c
6
+ metadata.gz: eeeada155b9e4a765821d50d2f9f2791e28e7cd38894ea9fa1e0d3dbcb482dcb9147d711ffe39f362c158911554954853fd973f50aa8c91530e27c9023227ead
7
+ data.tar.gz: 7ced6b9bada66ca7a409512b94043edeb6790a20ead6d0d694c48ac7c419ad7cf0843dbbff0e08ae5102bc33fd7800a21a2c2e0bb81d7c08d47f1f5c419ed339
@@ -11,10 +11,9 @@ require 'socket'
11
11
  # TinyTCPService implements a line-based, call and response protocol, where
12
12
  # every incoming message must be a newline-terminated ("\n") String, and for
13
13
  # every received message the service responds with a newline-terminated String.
14
- # been set).
15
14
  #
16
- # If you need more complex objects to be sent over the wire, consider something
17
- # like JSON.
15
+ # You can use this to send more complex objects, such as minified JSON, so long
16
+ # as your JSON's content doesn't also contain newlines.
18
17
  #
19
18
  # NOTE: if you're running a TinyTCPService and a client of your system violates
20
19
  # your communication protocol, you should raise an instance of
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiny_tcp_service
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Lunt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-05 00:00:00.000000000 Z
11
+ date: 2023-11-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: a tiny TCP service with automated client lifecycle
14
14
  email: jefflunt@gmail.com