ruby-shell 3.6.13 → 3.6.14
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/bin/rsh +4 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 909cecd4b06d6987e56e2d8a79dd0aa769e863cd1d80e989c3211f656d4e70e0
|
|
4
|
+
data.tar.gz: e3d9a6271b77a828559355c1d27fce6d3868e16ff4a3c66820c9ca65aec2fc24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e94c7d2e9b6ee78aa6be988923d16765578bf89a3f34888ec52bd40bf9b75eb31cc30d62ab8b6e8384f4513f7825a8e79cd41f9195c9afaf6a8d361bbe13eeb1
|
|
7
|
+
data.tar.gz: 5b6c42e9cbf4eb548f6640bd4f96429202dc964dd91b42b1655c23b4b35cf4131009f029b11e21b40de7b8b38844b05c496ba61cf053efef52374d28af9fa8d7
|
data/bin/rsh
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
# Web_site: http://isene.com/
|
|
9
9
|
# Github: https://github.com/isene/rsh
|
|
10
10
|
# License: Public domain
|
|
11
|
-
@version = "3.6.
|
|
11
|
+
@version = "3.6.14" # Fix tab completion creating new lines at bottom of screen
|
|
12
12
|
|
|
13
13
|
# MODULES, CLASSES AND EXTENSIONS
|
|
14
14
|
class String # Add coloring to strings (with escaping for Readline)
|
|
@@ -486,6 +486,7 @@ def getstr # A custom Readline-like function
|
|
|
486
486
|
if @stk == 0 and @history[0].length > 0
|
|
487
487
|
@tabsearch = @history[0]
|
|
488
488
|
tab("hist")
|
|
489
|
+
@cmd_row = @c_row
|
|
489
490
|
else
|
|
490
491
|
if lift
|
|
491
492
|
@history.unshift("")
|
|
@@ -593,10 +594,12 @@ def getstr # A custom Readline-like function
|
|
|
593
594
|
@ci = nil
|
|
594
595
|
#@tabsearch =~ /^-/ ? tabbing("switch") : tabbing("all")
|
|
595
596
|
tab("all")
|
|
597
|
+
@cmd_row = @c_row
|
|
596
598
|
lift = true
|
|
597
599
|
when 'S-TAB'
|
|
598
600
|
@ci = nil
|
|
599
601
|
tab("hist")
|
|
602
|
+
@cmd_row = @c_row
|
|
600
603
|
lift = true
|
|
601
604
|
when /^.$/
|
|
602
605
|
@history[0].insert(@pos,chr)
|
metadata
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-shell
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.6.
|
|
4
|
+
version: 3.6.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Geir Isene
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-02-
|
|
11
|
+
date: 2026-02-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: 'A shell written in Ruby with extensive tab completions, aliases/nicks,
|
|
14
14
|
history, syntax highlighting, theming, auto-cd, auto-opening files and more. UPDATE
|
|
15
|
-
v3.6.
|
|
16
|
-
prompt cycle.'
|
|
15
|
+
v3.6.14: Fix tab completion creating duplicate lines at bottom of screen.'
|
|
17
16
|
email: g@isene.com
|
|
18
17
|
executables:
|
|
19
18
|
- rsh
|