howzit 2.1.31 → 2.1.32

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: 937df7e90ef8641e22098de3ddba521506992d561bf29a225c3028fc8bbd8430
4
- data.tar.gz: 0540d9f6a17567ca59627a64617c7f65148a0313c4d406df127fd01e50b4472d
3
+ metadata.gz: 816754b14a92ca32bab9ae753a03926d0163e2af860164032b7d1fdfff58f716
4
+ data.tar.gz: 32fb6fee068779ba312051bd2613c8d47e24777760ecce28da796f2c35899fdd
5
5
  SHA512:
6
- metadata.gz: bbcc5f97374ac62c822c5e0aec4d064dbe8635aabcb261cad9fe1a0ec92c1f4cf61bac0dcc2d8e330efac2dcdf141ea0e5e19ad8af307caa4782b14de1175f9a
7
- data.tar.gz: 388f39ce1b755bf214b843ecc958bbe6058107004485be7e1aae8376177a8be720dc0c26fc863405fa0d0b6758d1bce7972a090f446b1879e1391f76cea1eed5
6
+ metadata.gz: 2741d38466727329dc19755f910acc88a67068b66c1665256365fecffd31ed64a9d0040b97f26140444676a74bec53b1e33c96048dd9b7044b8aecafa0e3a845
7
+ data.tar.gz: fbe6e5aa03de0eadbc3d4af7a34d67b0a1628d0926dbf0d908ab9ae8f49b31236b5b6d89d5433ef88785e0d78a9066a969ad7a757b5c81e33f7ada0a923bbc24
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ### 2.1.32
2
+
3
+ 2026-01-06 05:21
4
+
5
+ #### IMPROVED
6
+
7
+ - Completion output for howzit -L and howzit -T now shows topic titles without parenthetical variable names, making completion lists cleaner and easier to read while still preserving variable information in verbose output (howzit -R).
8
+
1
9
  ### 2.1.31
2
10
 
3
11
  2026-01-06 04:57
data/bin/howzit CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env ruby
1
+ #!/usr/bin/env ruby -W0
2
2
  # frozen_string_literal: true
3
3
 
4
4
  $LOAD_PATH.unshift File.join(__dir__, '..', 'lib')
@@ -168,9 +168,7 @@ module Howzit
168
168
  ##
169
169
  def list_topics
170
170
  @topics.map do |topic|
171
- title = topic.title
172
- title += "(#{topic.named_args.keys.join(', ')})" unless topic.named_args.empty?
173
- title
171
+ topic.title
174
172
  end
175
173
  end
176
174
 
@@ -195,9 +193,7 @@ module Howzit
195
193
  @topics.each do |topic|
196
194
  next unless topic.tasks.count.positive?
197
195
 
198
- title = topic.title
199
- title += "(#{topic.named_args.keys.join(', ')})" unless topic.named_args.empty?
200
- output.push(title)
196
+ output.push(topic.title)
201
197
  end
202
198
  output.join("\n")
203
199
  end
@@ -3,5 +3,5 @@
3
3
  # Primary module for this gem.
4
4
  module Howzit
5
5
  # Current Howzit version.
6
- VERSION = '2.1.31'
6
+ VERSION = '2.1.32'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: howzit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.31
4
+ version: 2.1.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra