net-ssh-telnet 0.3.0 → 0.3.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 +4 -4
- data/History.md +3 -0
- data/lib/net/ssh/telnet/version.rb +1 -1
- data/lib/net/ssh/telnet.rb +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e4bf07d942be319b09c4a28af87556a6867000b002520570278cd70c80f480cd
|
|
4
|
+
data.tar.gz: 6bca8ca60a8136e07f8efcd69f517b7e3c7a5fdeaef7750bd3d23b73b90e3707
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d6bda5e3872505fdbec0a736a3a32cf7a6ec75f0eb0feb5b0cf67ad9cbd34ba46f4739f4b08dcb0a47c81a0c0f2cf12b368eb4a4f56d642757a948b5be2a44b
|
|
7
|
+
data.tar.gz: e706102806ceb9926bd5b7dcc0dbdc33b88097dc0ebef01932f6b41993c35ae47807c22d4eb77a37e5da984cfc21b2dbdd2e827f5342d4c01c4ebbcc26bade71
|
data/History.md
CHANGED
data/lib/net/ssh/telnet.rb
CHANGED
|
@@ -254,7 +254,7 @@ module SSH
|
|
|
254
254
|
@dumplog.log_dump('#', message) if @options.has_key?("Dump_log")
|
|
255
255
|
end
|
|
256
256
|
|
|
257
|
-
@buf = ""
|
|
257
|
+
@buf = +""
|
|
258
258
|
@eof = false
|
|
259
259
|
@channel = nil
|
|
260
260
|
@ssh.open_channel do |channel|
|
|
@@ -369,7 +369,7 @@ module SSH
|
|
|
369
369
|
end
|
|
370
370
|
_process_ssh
|
|
371
371
|
if @buf != ""
|
|
372
|
-
c = @buf; @buf = ""
|
|
372
|
+
c = @buf; @buf = +""
|
|
373
373
|
@dumplog.log_dump('<', c) if @options.has_key?("Dump_log")
|
|
374
374
|
buf = rest + c
|
|
375
375
|
rest = ''
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: net-ssh-telnet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Dilda
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-ssh
|
|
@@ -68,7 +68,7 @@ homepage: https://github.com/duke-automation/net-ssh-telnet
|
|
|
68
68
|
licenses:
|
|
69
69
|
- MIT
|
|
70
70
|
metadata: {}
|
|
71
|
-
post_install_message:
|
|
71
|
+
post_install_message:
|
|
72
72
|
rdoc_options: []
|
|
73
73
|
require_paths:
|
|
74
74
|
- lib
|
|
@@ -83,8 +83,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
84
|
version: '0'
|
|
85
85
|
requirements: []
|
|
86
|
-
rubygems_version: 3.
|
|
87
|
-
signing_key:
|
|
86
|
+
rubygems_version: 3.4.20
|
|
87
|
+
signing_key:
|
|
88
88
|
specification_version: 4
|
|
89
89
|
summary: Provides Net::Telnet API for SSH connections
|
|
90
90
|
test_files: []
|