tcp-client 0.12.0 → 0.13.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/README.md +5 -13
- data/lib/tcp-client/default_configuration.rb +1 -1
- data/lib/tcp-client/mixin/io_with_deadline.rb +1 -1
- data/lib/tcp-client/version.rb +1 -1
- data/lib/tcp-client.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0193d806cfa23c35c5378acd176d8a14d5e0d3b6c2dba9ba6d66a445f920228
|
4
|
+
data.tar.gz: f7cc0fc3185e1ec25538eb778a878c3a209af9978ab7ad0787c0593a76a0bcf1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f88bbc3c2d520345c515f46344324830456aa5f91f37c17c962cd4bf22373ea47521963761428f0a210bb3ca64a13cebafe1c439d4f6a494204a3187382c2528
|
7
|
+
data.tar.gz: ac52537db4b04d7d2cfae9fcaf1444a23400c3b15bafec15b7f6cbc9eb707b332bc0bfd3e88ea219659aa8c3cc41e382065d9531f9e78e64b67cbddecb270554
|
data/README.md
CHANGED
@@ -45,27 +45,19 @@ For more samples see [the examples dir](./examples)
|
|
45
45
|
|
46
46
|
## Installation
|
47
47
|
|
48
|
-
|
49
|
-
|
50
|
-
Include in your `Gemfile`:
|
51
|
-
|
52
|
-
```ruby
|
53
|
-
gem 'tcp-client'
|
54
|
-
```
|
55
|
-
|
56
|
-
and install it by running Bundler:
|
48
|
+
You can install the gem in your system with
|
57
49
|
|
58
50
|
```shell
|
59
|
-
|
51
|
+
gem install tcp-client
|
60
52
|
```
|
61
53
|
|
62
|
-
|
54
|
+
You can use [Bundler](http://gembundler.com/) to add TCPClient to your own project:
|
63
55
|
|
64
56
|
```shell
|
65
|
-
|
57
|
+
bundle add 'tcp-client'
|
66
58
|
```
|
67
59
|
|
68
|
-
After that you
|
60
|
+
After that you only need one line of code to have everything together
|
69
61
|
|
70
62
|
```ruby
|
71
63
|
require 'tcp-client'
|
data/lib/tcp-client/version.rb
CHANGED
data/lib/tcp-client.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tcp-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Blumtritt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
This gem implements a customizable TCP client class that gives you control
|
@@ -59,7 +59,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
version: '0'
|
61
61
|
requirements: []
|
62
|
-
rubygems_version: 3.4.
|
62
|
+
rubygems_version: 3.4.22
|
63
63
|
signing_key:
|
64
64
|
specification_version: 4
|
65
65
|
summary: Use your TCP connections with working timeout.
|