howzit 2.0.8 → 2.0.11
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/.travis.yml +1 -1
- data/CHANGELOG.md +32 -0
- data/README.md +4 -343
- data/bin/howzit +101 -83
- data/fish/completions/howzit.fish +34 -2
- data/howzit.gemspec +2 -0
- data/lib/howzit/buildnote.rb +161 -33
- data/lib/howzit/colors.rb +3 -0
- data/lib/howzit/config.rb +39 -5
- data/lib/howzit/console_logger.rb +38 -0
- data/lib/howzit/hash.rb +25 -4
- data/lib/howzit/prompt.rb +42 -6
- data/lib/howzit/stringutils.rb +131 -4
- data/lib/howzit/task.rb +10 -6
- data/lib/howzit/topic.rb +72 -10
- data/lib/howzit/util.rb +35 -5
- data/lib/howzit/version.rb +1 -1
- data/lib/howzit.rb +13 -0
- data/spec/cli_spec.rb +27 -0
- data/spec/spec_helper.rb +1 -0
- data/spec/task_spec.rb +6 -1
- metadata +32 -5
- data/lib/howzit/buildnotes.rb +0 -1252
- data/spec/buildnotes.md.bak +0 -22
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: howzit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Terpstra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -136,6 +136,20 @@ dependencies:
|
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '3.1'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: cli-test
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '1.0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '1.0'
|
139
153
|
- !ruby/object:Gem::Dependency
|
140
154
|
name: simplecov
|
141
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -240,6 +254,20 @@ dependencies:
|
|
240
254
|
- - "~>"
|
241
255
|
- !ruby/object:Gem::Version
|
242
256
|
version: '0.8'
|
257
|
+
- !ruby/object:Gem::Dependency
|
258
|
+
name: tty-box
|
259
|
+
requirement: !ruby/object:Gem::Requirement
|
260
|
+
requirements:
|
261
|
+
- - "~>"
|
262
|
+
- !ruby/object:Gem::Version
|
263
|
+
version: '0.7'
|
264
|
+
type: :runtime
|
265
|
+
prerelease: false
|
266
|
+
version_requirements: !ruby/object:Gem::Requirement
|
267
|
+
requirements:
|
268
|
+
- - "~>"
|
269
|
+
- !ruby/object:Gem::Version
|
270
|
+
version: '0.7'
|
243
271
|
description: Command line project documentation and task runner
|
244
272
|
email:
|
245
273
|
- me@brettterpstra.com
|
@@ -269,7 +297,6 @@ files:
|
|
269
297
|
- lib/.rubocop.yml
|
270
298
|
- lib/howzit.rb
|
271
299
|
- lib/howzit/buildnote.rb
|
272
|
-
- lib/howzit/buildnotes.rb
|
273
300
|
- lib/howzit/colors.rb
|
274
301
|
- lib/howzit/config.rb
|
275
302
|
- lib/howzit/console_logger.rb
|
@@ -282,7 +309,7 @@ files:
|
|
282
309
|
- lib/howzit/version.rb
|
283
310
|
- spec/.rubocop.yml
|
284
311
|
- spec/buildnote_spec.rb
|
285
|
-
- spec/
|
312
|
+
- spec/cli_spec.rb
|
286
313
|
- spec/ruby_gem_spec.rb
|
287
314
|
- spec/spec_helper.rb
|
288
315
|
- spec/task_spec.rb
|
@@ -315,7 +342,7 @@ summary: Provides a way to access Markdown project notes by topic with query cap
|
|
315
342
|
test_files:
|
316
343
|
- spec/.rubocop.yml
|
317
344
|
- spec/buildnote_spec.rb
|
318
|
-
- spec/
|
345
|
+
- spec/cli_spec.rb
|
319
346
|
- spec/ruby_gem_spec.rb
|
320
347
|
- spec/spec_helper.rb
|
321
348
|
- spec/task_spec.rb
|