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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c94ec6bc636ca052476c08c5225a90f0c91793541ddf3babccc0ae7ae7640414
4
- data.tar.gz: 216aaa38e4da98b8a0086091d4bc97a6620a802b4010ce2f61566eb54fcf3229
3
+ metadata.gz: 75ab7a71297b63ca0cd73b6d5541906a41b9b06791e5547e1817e54ff47b3181
4
+ data.tar.gz: 15814f32b8541be3a44b82f0b99e9e866dac6ae84ff61403de32680657ebbadb
5
5
  SHA512:
6
- metadata.gz: ffe27b81db87390d83a8dc652c7c519b398d353fd5dc58d6924a08d37e7eedae5ed849ec89b6c42ad8fafbbd069aa6275bfe1433308a89ef3795b262b761ad4f
7
- data.tar.gz: ccb57a62032ac99663306b6794d8e9b0b6af975869c4a8e9c3c8dc8687b1e1f91b2f31bc5ed07be7e30869a6fbe99a5273aefbb7e39b946fc5a19245928cad6e
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
- line = reader.read_line(prompt)
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
@@ -1,3 +1,3 @@
1
1
  module PiotrbCliUtils
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.0"
3
3
  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.1.1
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-02-26 00:00:00.000000000 Z
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.5.11
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: []