tcp-client 0.10.1 → 0.11.2

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.
data/tcp-client.gemspec DELETED
@@ -1,39 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative './lib/tcp-client/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'tcp-client'
7
- spec.version = TCPClient::VERSION
8
- spec.required_ruby_version = '>= 2.7.0'
9
-
10
- spec.author = 'Mike Blumtritt'
11
- spec.summary = 'A TCP client implementation with working timeout support.'
12
- spec.description = <<~description
13
- This Gem implements a TCP client with (optional) SSL support.
14
- It is an easy to use, versatile configurable client that can correctly
15
- handle time limits.
16
- Unlike other implementations, this client respects
17
- predefined/configurable time limits for each method
18
- (`connect`, `read`, `write`). Deadlines for a sequence of read/write
19
- actions can also be monitored.
20
- description
21
-
22
- spec.homepage = 'https://github.com/mblumtritt/tcp-client'
23
- spec.license = 'BSD-3-Clause'
24
- spec.metadata.merge!(
25
- 'source_code_uri' => 'https://github.com/mblumtritt/tcp-client',
26
- 'bug_tracker_uri' => 'https://github.com/mblumtritt/tcp-client/issues',
27
- 'documentation_uri' => 'https://rubydoc.info/github/mblumtritt/tcp-client'
28
- )
29
-
30
- spec.add_development_dependency 'bundler'
31
- spec.add_development_dependency 'rake'
32
- spec.add_development_dependency 'rspec'
33
- spec.add_development_dependency 'yard'
34
-
35
- all_files = Dir.chdir(__dir__) { `git ls-files -z`.split(0.chr) }
36
- spec.test_files = all_files.grep(%r{^spec/})
37
- spec.files = all_files - spec.test_files
38
- spec.extra_rdoc_files = %w[README.md LICENSE]
39
- end