howzit 2.1.29 → 2.1.30
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 +74 -0
- data/README.md +5 -1
- data/Rakefile +7 -1
- data/lib/howzit/config.rb +13 -0
- data/lib/howzit/console_logger.rb +62 -2
- data/lib/howzit/directive.rb +137 -0
- data/lib/howzit/script_support.rb +479 -0
- data/lib/howzit/task.rb +57 -4
- data/lib/howzit/topic.rb +548 -5
- data/lib/howzit/version.rb +1 -1
- data/lib/howzit.rb +2 -0
- data/spec/log_level_spec.rb +247 -0
- data/spec/sequential_conditional_spec.rb +319 -0
- data/spec/set_var_spec.rb +603 -0
- data/spec/topic_spec.rb +8 -6
- data/src/_README.md +5 -1
- metadata +10 -2
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.
|
|
4
|
+
version: 2.1.30
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brett Terpstra
|
|
@@ -302,10 +302,12 @@ files:
|
|
|
302
302
|
- lib/howzit/conditional_content.rb
|
|
303
303
|
- lib/howzit/config.rb
|
|
304
304
|
- lib/howzit/console_logger.rb
|
|
305
|
+
- lib/howzit/directive.rb
|
|
305
306
|
- lib/howzit/hash.rb
|
|
306
307
|
- lib/howzit/prompt.rb
|
|
307
308
|
- lib/howzit/run_report.rb
|
|
308
309
|
- lib/howzit/script_comm.rb
|
|
310
|
+
- lib/howzit/script_support.rb
|
|
309
311
|
- lib/howzit/stringutils.rb
|
|
310
312
|
- lib/howzit/task.rb
|
|
311
313
|
- lib/howzit/topic.rb
|
|
@@ -317,10 +319,13 @@ files:
|
|
|
317
319
|
- spec/condition_evaluator_spec.rb
|
|
318
320
|
- spec/conditional_blocks_integration_spec.rb
|
|
319
321
|
- spec/conditional_content_spec.rb
|
|
322
|
+
- spec/log_level_spec.rb
|
|
320
323
|
- spec/prompt_spec.rb
|
|
321
324
|
- spec/ruby_gem_spec.rb
|
|
322
325
|
- spec/run_report_spec.rb
|
|
323
326
|
- spec/script_comm_spec.rb
|
|
327
|
+
- spec/sequential_conditional_spec.rb
|
|
328
|
+
- spec/set_var_spec.rb
|
|
324
329
|
- spec/spec_helper.rb
|
|
325
330
|
- spec/stringutils_spec.rb
|
|
326
331
|
- spec/task_spec.rb
|
|
@@ -346,7 +351,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
346
351
|
- !ruby/object:Gem::Version
|
|
347
352
|
version: '0'
|
|
348
353
|
requirements: []
|
|
349
|
-
rubygems_version:
|
|
354
|
+
rubygems_version: 4.0.3
|
|
350
355
|
specification_version: 4
|
|
351
356
|
summary: Provides a way to access Markdown project notes by topic with query capabilities
|
|
352
357
|
and the ability to execute the tasks it describes.
|
|
@@ -356,10 +361,13 @@ test_files:
|
|
|
356
361
|
- spec/condition_evaluator_spec.rb
|
|
357
362
|
- spec/conditional_blocks_integration_spec.rb
|
|
358
363
|
- spec/conditional_content_spec.rb
|
|
364
|
+
- spec/log_level_spec.rb
|
|
359
365
|
- spec/prompt_spec.rb
|
|
360
366
|
- spec/ruby_gem_spec.rb
|
|
361
367
|
- spec/run_report_spec.rb
|
|
362
368
|
- spec/script_comm_spec.rb
|
|
369
|
+
- spec/sequential_conditional_spec.rb
|
|
370
|
+
- spec/set_var_spec.rb
|
|
363
371
|
- spec/spec_helper.rb
|
|
364
372
|
- spec/stringutils_spec.rb
|
|
365
373
|
- spec/task_spec.rb
|