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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/rsh +4 -1
  3. metadata +3 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d27f9b0e122174a3556a1954950ab96e27ce57193d6a31fe7c8d0ec807fbc9b8
4
- data.tar.gz: fed1c864573944923034b58fe24a128bbd60899db4d7d2104bc0a1b3e6b2c99d
3
+ metadata.gz: 909cecd4b06d6987e56e2d8a79dd0aa769e863cd1d80e989c3211f656d4e70e0
4
+ data.tar.gz: e3d9a6271b77a828559355c1d27fce6d3868e16ff4a3c66820c9ca65aec2fc24
5
5
  SHA512:
6
- metadata.gz: fde7b317a383ed186df64a0abd17fc35189d90cc522fa5c14df83229584b6ac90c54bfc51fda1c25c4a49b6912ecc464b953d8796fee944e8c469233370bc132
7
- data.tar.gz: c1dcd5f4fa4a492b4f97443e8c58cc3a77c065ab1f536c46b0d15a6d87ca78e08003943701cea95420b99d399ec378a365855b08a7318409e784ebd998a48707
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.13" # Refresh terminal width each prompt (fix stale @maxcol)
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.13
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-26 00:00:00.000000000 Z
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.13: Fix cursor position on wide terminals - refresh terminal dimensions each
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