piotrb_cli_utils 0.1.1 → 0.2.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/lib/piotrb_cli_utils/cmd_loop.rb +5 -1
- data/lib/piotrb_cli_utils/version.rb +1 -1
- metadata +3 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75ab7a71297b63ca0cd73b6d5541906a41b9b06791e5547e1817e54ff47b3181
|
4
|
+
data.tar.gz: 15814f32b8541be3a44b82f0b99e9e866dac6ae84ff61403de32680657ebbadb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7eaf087a99319de9c1c78c67a645f619e8e6065d3493d35d8442dbdbf323cb5459b296794d3dc62247076faf323428804a4fd7c5654b30e5f2364aba89ba583
|
7
|
+
data.tar.gz: 2d320123a2d579025e3e8ef26a390c2f9f89ff791f1928dd2146019a6e5f1f14aee5fa916b3c73f5e0e2a99c088ab70932d070a582c5316ae1aae2081da1ebfe
|
@@ -2,6 +2,9 @@
|
|
2
2
|
|
3
3
|
module PiotrbCliUtils
|
4
4
|
module CmdLoop
|
5
|
+
# @param prompt [String, Proc] The prompt to use for the command loop.
|
6
|
+
# If a proc is given, it will be called for each time the prompt is
|
7
|
+
# displayed.
|
5
8
|
def run_cmd_loop(prompt = '=> ')
|
6
9
|
reader = TTY::Reader.new(interrupt: :noop)
|
7
10
|
reader.on(:keyctrl_c, :keyescape) do
|
@@ -14,7 +17,8 @@ module PiotrbCliUtils
|
|
14
17
|
|
15
18
|
catch(:stop) do
|
16
19
|
loop do
|
17
|
-
|
20
|
+
actual_prompt = prompt.respond_to?(:call) ? prompt.call : prompt
|
21
|
+
line = reader.read_line(actual_prompt)
|
18
22
|
line.strip!
|
19
23
|
yield(line)
|
20
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: piotrb_cli_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Piotr Banasik
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-
|
10
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: tty-reader
|
@@ -52,7 +51,6 @@ dependencies:
|
|
52
51
|
- - ">="
|
53
52
|
- !ruby/object:Gem::Version
|
54
53
|
version: '0'
|
55
|
-
description:
|
56
54
|
email:
|
57
55
|
- piotr.banasik@gmail.com
|
58
56
|
executables: []
|
@@ -79,7 +77,6 @@ licenses:
|
|
79
77
|
metadata:
|
80
78
|
homepage_uri: https://github.com/piotr/cli_utils
|
81
79
|
source_code_uri: https://github.com/piotr/cli_utils
|
82
|
-
post_install_message:
|
83
80
|
rdoc_options: []
|
84
81
|
require_paths:
|
85
82
|
- lib
|
@@ -94,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
91
|
- !ruby/object:Gem::Version
|
95
92
|
version: '0'
|
96
93
|
requirements: []
|
97
|
-
rubygems_version: 3.
|
98
|
-
signing_key:
|
94
|
+
rubygems_version: 3.6.2
|
99
95
|
specification_version: 4
|
100
96
|
summary: CLI Utils for my command line scripts
|
101
97
|
test_files: []
|