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 +4 -4
- data/CHANGELOG.md +66 -0
- data/bin/howzit +2 -2
- data/howzit.gemspec +3 -1
- data/lib/howzit/buildnote.rb +263 -94
- data/lib/howzit/prompt.rb +19 -7
- data/lib/howzit/run_report.rb +51 -0
- data/lib/howzit/stringutils.rb +3 -1
- data/lib/howzit/task.rb +21 -2
- data/lib/howzit/topic.rb +24 -1
- data/lib/howzit/util.rb +5 -1
- data/lib/howzit/version.rb +1 -1
- data/lib/howzit.rb +11 -2
- data/spec/buildnote_spec.rb +59 -3
- data/spec/cli_spec.rb +1 -1
- data/spec/run_report_spec.rb +35 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/topic_spec.rb +5 -2
- metadata +6 -15
- data/.editorconfig +0 -9
- data/.github/FUNDING.yml +0 -2
- data/.gitignore +0 -45
- data/.howzit.taskpaper.bak +0 -27
- data/.irbrc +0 -12
- data/.rspec +0 -2
- data/.rubocop.yml +0 -48
- data/.travis.yml +0 -17
- data/.yardopts +0 -6
- data/lib/.rubocop.yml +0 -1
- data/spec/.rubocop.yml +0 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6cac91a8b188ff256fa863ad94e134e820ed2aa2eb766a10fea38ee745de750
|
|
4
|
+
data.tar.gz: 90799282be7a348b595df19a5c09850db8ac4d653bd81063d49f1830e6cb0761
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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(
|
|
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']
|