howzit 2.1.18 → 2.1.22

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: 4c45e148fc771ca280dbf21202a25f3b6192eb0534f88692103630749de801c9
4
+ data.tar.gz: 2567392e9e6389845be4809aca60ccb347848b2c7575f0c6f4c9232f4a4fe4f0
5
5
  SHA512:
6
- metadata.gz: bca6e7eb45d1c69862aa8e7ff25cd9ccf713826a61836d9d515f761eb1aee46ee6e5c90f5dfdbb120b02dcf0700023817a3fd5dd74a9538170188f8c23397eb9
7
- data.tar.gz: e565bd5ff26d4788a72ecd776d39297ec11b2ffb1290b079496f4fdad3dc7faa4ccfebce8d725d9d503727cc06f4014bea34c6afff3bf70377d051594a033dfb
6
+ metadata.gz: 9e22a71fee828ebfcd96e2f1ea5d4f27ad5e6a0401cc6a73f8344313006a160b10db160c6eb71b7f528df8b23233871a6c914c8ccdb48d57a88b60fb25d4e287
7
+ data.tar.gz: 98411cc9c877f08309c26df629c713510514afeb740a85e741700bd8d9f96b373c5b40affe540e371dd93321aeec6c088fd65d6b953550e4b3161829aa7c0a58
data/CHANGELOG.md CHANGED
@@ -1,3 +1,84 @@
1
+ ### 2.1.22
2
+
3
+ 2025-12-13 06:14
4
+
5
+ #### NEW
6
+
7
+ - Template selection menu when creating new build notes
8
+ - Prompt for required template variables during note creation
9
+ - Gum support as fallback for menus and text input
10
+
11
+ #### IMPROVED
12
+
13
+ - Fuzzy matching for template names when fzf unavailable
14
+ - Text input uses Readline for proper line editing (backspace, ctrl-a/e)
15
+
16
+ ### 2.1.21
17
+
18
+ 2025-12-13 05:03
19
+
20
+ #### NEW
21
+
22
+ - Prefer exact whole-word topic matches over fuzzy matches
23
+ - Display run summary after executing tasks
24
+
25
+ #### IMPROVED
26
+
27
+ - Topic matching now handles colons/commas in topic titles
28
+ - Smart splitting of multiple topics preserves separators in titles
29
+ - Single match from choose now auto-selects without menu
30
+ - Combined output from multiple topics paginated together
31
+ - Menu prompt shows the search term being matched
32
+
33
+ #### FIXED
34
+
35
+ - String uncolor deleting characters
36
+ - Broken pipe error when quitting pager early
37
+
38
+ ### 2.1.20
39
+
40
+ 2025-12-13 05:01
41
+
42
+ #### NEW
43
+
44
+ - Prefer exact whole-word topic matches over fuzzy matches
45
+ - Display run summary after executing tasks
46
+
47
+ #### IMPROVED
48
+
49
+ - Topic matching now handles colons/commas in topic titles
50
+ - Smart splitting of multiple topics preserves separators in titles
51
+ - Single match from choose now auto-selects without menu
52
+ - Combined output from multiple topics paginated together
53
+ - Menu prompt shows the search term being matched
54
+
55
+ #### FIXED
56
+
57
+ - String uncolor deleting characters
58
+ - Broken pipe error when quitting pager early
59
+
60
+ ### 2.1.19
61
+
62
+ 2025-12-13 05:01
63
+
64
+ #### NEW
65
+
66
+ - Prefer exact whole-word topic matches over fuzzy matches
67
+ - Display run summary after executing tasks
68
+
69
+ #### IMPROVED
70
+
71
+ - Topic matching now handles colons/commas in topic titles
72
+ - Smart splitting of multiple topics preserves separators in titles
73
+ - Single match from choose now auto-selects without menu
74
+ - Combined output from multiple topics paginated together
75
+ - Menu prompt shows the search term being matched
76
+
77
+ #### FIXED
78
+
79
+ - String uncolor deleting characters
80
+ - Broken pipe error when quitting pager early
81
+
1
82
  ### 2.1.18
2
83
 
3
84
  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']