howzit 2.1.18 → 2.1.21

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: 4c4fea8cf5770f7beb101c32a4596c4a4d58006d1378c95dd482e95052b2e672
4
- data.tar.gz: d0e85f76ddf1dc2f02a0bfb7dc85f5495e749aa13bdda0ed773cb8ce11ff8fb7
3
+ metadata.gz: a6cac91a8b188ff256fa863ad94e134e820ed2aa2eb766a10fea38ee745de750
4
+ data.tar.gz: 90799282be7a348b595df19a5c09850db8ac4d653bd81063d49f1830e6cb0761
5
5
  SHA512:
6
- metadata.gz: bca6e7eb45d1c69862aa8e7ff25cd9ccf713826a61836d9d515f761eb1aee46ee6e5c90f5dfdbb120b02dcf0700023817a3fd5dd74a9538170188f8c23397eb9
7
- data.tar.gz: e565bd5ff26d4788a72ecd776d39297ec11b2ffb1290b079496f4fdad3dc7faa4ccfebce8d725d9d503727cc06f4014bea34c6afff3bf70377d051594a033dfb
6
+ metadata.gz: 6b98ee5eb923878803f0268080ad1d56f4f9aed7279e6dcb245f13659e3a947348212741b3409861aacff145bc5abb19af7dd9810a854626e6b5067fc33ad954
7
+ data.tar.gz: 9be180170d36f0f415e3f0977b5b951368f7498fe630cd4f900626bf852c5678b860cea8ac63472dec0c03c41531cf70eb58a5002298a5ed9f5661204aa6d7cb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,69 @@
1
+ ### 2.1.21
2
+
3
+ 2025-12-13 05:03
4
+
5
+ #### NEW
6
+
7
+ - Prefer exact whole-word topic matches over fuzzy matches
8
+ - Display run summary after executing tasks
9
+
10
+ #### IMPROVED
11
+
12
+ - Topic matching now handles colons/commas in topic titles
13
+ - Smart splitting of multiple topics preserves separators in titles
14
+ - Single match from choose now auto-selects without menu
15
+ - Combined output from multiple topics paginated together
16
+ - Menu prompt shows the search term being matched
17
+
18
+ #### FIXED
19
+
20
+ - String uncolor deleting characters
21
+ - Broken pipe error when quitting pager early
22
+
23
+ ### 2.1.20
24
+
25
+ 2025-12-13 05:01
26
+
27
+ #### NEW
28
+
29
+ - Prefer exact whole-word topic matches over fuzzy matches
30
+ - Display run summary after executing tasks
31
+
32
+ #### IMPROVED
33
+
34
+ - Topic matching now handles colons/commas in topic titles
35
+ - Smart splitting of multiple topics preserves separators in titles
36
+ - Single match from choose now auto-selects without menu
37
+ - Combined output from multiple topics paginated together
38
+ - Menu prompt shows the search term being matched
39
+
40
+ #### FIXED
41
+
42
+ - String uncolor deleting characters
43
+ - Broken pipe error when quitting pager early
44
+
45
+ ### 2.1.19
46
+
47
+ 2025-12-13 05:01
48
+
49
+ #### NEW
50
+
51
+ - Prefer exact whole-word topic matches over fuzzy matches
52
+ - Display run summary after executing tasks
53
+
54
+ #### IMPROVED
55
+
56
+ - Topic matching now handles colons/commas in topic titles
57
+ - Smart splitting of multiple topics preserves separators in titles
58
+ - Single match from choose now auto-selects without menu
59
+ - Combined output from multiple topics paginated together
60
+ - Menu prompt shows the search term being matched
61
+
62
+ #### FIXED
63
+
64
+ - String uncolor deleting characters
65
+ - Broken pipe error when quitting pager early
66
+
1
67
  ### 2.1.18
2
68
 
3
69
  2025-01-01 09:53
data/bin/howzit CHANGED
@@ -32,12 +32,12 @@ OptionParser.new do |opts|
32
32
  opts.on("-f", "--force", "Continue executing after an error") { Howzit.options[:force] = true }
33
33
 
34
34
  opts.on("-m", "--matching TYPE", MATCHING_OPTIONS,
35
- "Topics matching type", "(#{MATCHING_OPTIONS.join(", ")})") do |c|
35
+ "Topics matching type", "(#{MATCHING_OPTIONS.join(", ").sub(/#{Howzit.options[:matching]}/, "*#{Howzit.options[:matching]}")})") do |c|
36
36
  Howzit.options[:matching] = c
37
37
  end
38
38
 
39
39
  opts.on("--multiple TYPE", MULTIPLE_OPTIONS,
40
- "Multiple result handling", "(#{MULTIPLE_OPTIONS.join(", ")}, default choose)") do |c|
40
+ "Multiple result handling", "(#{MULTIPLE_OPTIONS.join(", ").sub(/#{Howzit.options[:multiple_matches]}/, "*#{Howzit.options[:multiple_matches]}")}, default choose)") do |c|
41
41
  Howzit.options[:multiple_matches] = c.to_sym
42
42
  end
43
43
 
data/howzit.gemspec CHANGED
@@ -16,7 +16,9 @@ Gem::Specification.new do |spec|
16
16
  spec.homepage = 'https://github.com/ttscoff/howzit'
17
17
  spec.license = 'MIT'
18
18
 
19
- spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
19
+ spec.files = `git ls-files -z`.split("\x0").reject do |path|
20
+ path.split('/').any? { |segment| segment.start_with?('.') } || path.end_with?('.bak')
21
+ end
20
22
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
21
23
  spec.test_files = spec.files.grep(%r{^(features|spec|test)/})
22
24
  spec.require_paths = ['lib']