doing 2.1.13 → 2.1.17

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.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/.irbrc +1 -0
  3. data/.yardoc/checksums +14 -12
  4. data/.yardoc/object_types +0 -0
  5. data/.yardoc/objects/root.dat +0 -0
  6. data/CHANGELOG.md +76 -0
  7. data/Gemfile.lock +9 -2
  8. data/README.md +56 -19
  9. data/bin/doing +218 -68
  10. data/docs/doc/Array.html +117 -3
  11. data/docs/doc/BooleanTermParser/Clause.html +1 -1
  12. data/docs/doc/BooleanTermParser/Operator.html +1 -1
  13. data/docs/doc/BooleanTermParser/Query.html +1 -1
  14. data/docs/doc/BooleanTermParser/QueryParser.html +1 -1
  15. data/docs/doc/BooleanTermParser/QueryTransformer.html +1 -1
  16. data/docs/doc/BooleanTermParser.html +1 -1
  17. data/docs/doc/Doing/Color.html +6 -2
  18. data/docs/doc/Doing/Completion.html +1 -1
  19. data/docs/doc/Doing/Configuration.html +8 -4
  20. data/docs/doc/Doing/Errors/DoingNoTraceError.html +1 -1
  21. data/docs/doc/Doing/Errors/DoingRuntimeError.html +1 -1
  22. data/docs/doc/Doing/Errors/DoingStandardError.html +1 -1
  23. data/docs/doc/Doing/Errors/EmptyInput.html +1 -1
  24. data/docs/doc/Doing/Errors/NoResults.html +1 -1
  25. data/docs/doc/Doing/Errors/PluginException.html +1 -1
  26. data/docs/doc/Doing/Errors/UserCancelled.html +1 -1
  27. data/docs/doc/Doing/Errors/WrongCommand.html +1 -1
  28. data/docs/doc/Doing/Errors.html +1 -1
  29. data/docs/doc/Doing/Hooks.html +1 -1
  30. data/docs/doc/Doing/Item.html +340 -14
  31. data/docs/doc/Doing/Items.html +2 -2
  32. data/docs/doc/Doing/LogAdapter.html +1 -1
  33. data/docs/doc/Doing/Note.html +2 -2
  34. data/docs/doc/Doing/Pager.html +1 -1
  35. data/docs/doc/Doing/Plugins.html +1 -1
  36. data/docs/doc/Doing/Prompt.html +103 -1
  37. data/docs/doc/Doing/Section.html +1 -1
  38. data/docs/doc/Doing/TemplateString.html +2 -2
  39. data/docs/doc/Doing/Util/Backup.html +1 -1
  40. data/docs/doc/Doing/Util.html +1 -1
  41. data/docs/doc/Doing/WWID.html +77 -71
  42. data/docs/doc/Doing.html +3 -3
  43. data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
  44. data/docs/doc/GLI/Commands.html +1 -1
  45. data/docs/doc/GLI.html +1 -1
  46. data/docs/doc/Hash.html +1 -1
  47. data/docs/doc/Numeric.html +279 -0
  48. data/docs/doc/PhraseParser/Operator.html +1 -1
  49. data/docs/doc/PhraseParser/PhraseClause.html +1 -1
  50. data/docs/doc/PhraseParser/Query.html +1 -1
  51. data/docs/doc/PhraseParser/QueryParser.html +1 -1
  52. data/docs/doc/PhraseParser/QueryTransformer.html +1 -1
  53. data/docs/doc/PhraseParser/TermClause.html +1 -1
  54. data/docs/doc/PhraseParser.html +1 -1
  55. data/docs/doc/Status.html +1 -1
  56. data/docs/doc/String.html +997 -118
  57. data/docs/doc/Symbol.html +1 -1
  58. data/docs/doc/Time.html +1 -1
  59. data/docs/doc/_index.html +14 -9
  60. data/docs/doc/class_list.html +1 -1
  61. data/docs/doc/file.README.html +41 -15
  62. data/docs/doc/index.html +41 -15
  63. data/docs/doc/method_list.html +449 -305
  64. data/docs/doc/top-level-namespace.html +2 -2
  65. data/docs/index.md +56 -19
  66. data/doing.gemspec +2 -0
  67. data/doing.rdoc +76 -9
  68. data/example_plugin.rb +2 -4
  69. data/lib/completion/_doing.zsh +17 -17
  70. data/lib/completion/doing.bash +25 -25
  71. data/lib/completion/doing.fish +18 -6
  72. data/lib/doing/array_chronify.rb +57 -0
  73. data/lib/doing/colors.rb +4 -0
  74. data/lib/doing/configuration.rb +6 -2
  75. data/lib/doing/item.rb +108 -0
  76. data/lib/doing/log_adapter.rb +3 -3
  77. data/lib/doing/numeric_chronify.rb +40 -0
  78. data/lib/doing/plugins/export/dayone_export.rb +1 -1
  79. data/lib/doing/plugins/export/json_export.rb +2 -2
  80. data/lib/doing/plugins/export/template_export.rb +49 -90
  81. data/lib/doing/plugins/import/calendar_import.rb +13 -1
  82. data/lib/doing/plugins/import/doing_import.rb +12 -1
  83. data/lib/doing/plugins/import/timing_import.rb +13 -1
  84. data/lib/doing/prompt.rb +65 -1
  85. data/lib/doing/string.rb +137 -33
  86. data/lib/doing/string_chronify.rb +112 -14
  87. data/lib/doing/template_string.rb +1 -1
  88. data/lib/doing/time.rb +6 -6
  89. data/lib/doing/util_backup.rb +1 -1
  90. data/lib/doing/version.rb +1 -1
  91. data/lib/doing/wwid.rb +117 -106
  92. data/lib/doing.rb +36 -31
  93. data/lib/examples/plugins/say_export.rb +1 -4
  94. metadata +46 -2
data/docs/doc/Symbol.html CHANGED
@@ -308,7 +308,7 @@
308
308
  </div>
309
309
 
310
310
  <div id="footer">
311
- Generated on Fri Jan 14 21:59:14 2022 by
311
+ Generated on Tue Jan 18 07:38:21 2022 by
312
312
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
313
313
  0.9.26 (ruby-3.0.1).
314
314
  </div>
data/docs/doc/Time.html CHANGED
@@ -240,7 +240,7 @@
240
240
  </div>
241
241
 
242
242
  <div id="footer">
243
- Generated on Fri Jan 14 21:59:14 2022 by
243
+ Generated on Tue Jan 18 07:38:21 2022 by
244
244
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
245
245
  0.9.26 (ruby-3.0.1).
246
246
  </div>
data/docs/doc/_index.html CHANGED
@@ -314,6 +314,11 @@
314
314
 
315
315
  </li>
316
316
 
317
+ <li>
318
+ <span class='object_link'><a href="Numeric.html" title="Numeric (class)">Numeric</a></span>
319
+
320
+ </li>
321
+
317
322
  </ul>
318
323
  </ul>
319
324
 
@@ -323,16 +328,16 @@
323
328
  <ul>
324
329
 
325
330
  <li>
326
- <span class='object_link'><a href="BooleanTermParser/Operator.html" title="BooleanTermParser::Operator (class)">Operator</a></span>
331
+ <span class='object_link'><a href="PhraseParser/Operator.html" title="PhraseParser::Operator (class)">Operator</a></span>
327
332
 
328
- <small>(BooleanTermParser)</small>
333
+ <small>(PhraseParser)</small>
329
334
 
330
335
  </li>
331
336
 
332
337
  <li>
333
- <span class='object_link'><a href="PhraseParser/Operator.html" title="PhraseParser::Operator (class)">Operator</a></span>
338
+ <span class='object_link'><a href="BooleanTermParser/Operator.html" title="BooleanTermParser::Operator (class)">Operator</a></span>
334
339
 
335
- <small>(PhraseParser)</small>
340
+ <small>(BooleanTermParser)</small>
336
341
 
337
342
  </li>
338
343
 
@@ -421,16 +426,16 @@
421
426
  </li>
422
427
 
423
428
  <li>
424
- <span class='object_link'><a href="BooleanTermParser/QueryTransformer.html" title="BooleanTermParser::QueryTransformer (class)">QueryTransformer</a></span>
429
+ <span class='object_link'><a href="PhraseParser/QueryTransformer.html" title="PhraseParser::QueryTransformer (class)">QueryTransformer</a></span>
425
430
 
426
- <small>(BooleanTermParser)</small>
431
+ <small>(PhraseParser)</small>
427
432
 
428
433
  </li>
429
434
 
430
435
  <li>
431
- <span class='object_link'><a href="PhraseParser/QueryTransformer.html" title="PhraseParser::QueryTransformer (class)">QueryTransformer</a></span>
436
+ <span class='object_link'><a href="BooleanTermParser/QueryTransformer.html" title="BooleanTermParser::QueryTransformer (class)">QueryTransformer</a></span>
432
437
 
433
- <small>(PhraseParser)</small>
438
+ <small>(BooleanTermParser)</small>
434
439
 
435
440
  </li>
436
441
 
@@ -550,7 +555,7 @@
550
555
  </div>
551
556
 
552
557
  <div id="footer">
553
- Generated on Fri Jan 14 21:59:13 2022 by
558
+ Generated on Tue Jan 18 07:38:21 2022 by
554
559
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
555
560
  0.9.26 (ruby-3.0.1).
556
561
  </div>
@@ -43,7 +43,7 @@
43
43
 
44
44
  <ul id="full_list" class="class">
45
45
  <li id="object_" class="odd"><div class="item" style="padding-left:30px"><span class='object_link'><a href="top-level-namespace.html" title="Top Level Namespace (root)">Top Level Namespace</a></span></div></li>
46
- <li id='object_Array' class='even'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Array.html" title="Array (class)">Array</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li><li id='object_BooleanTermParser' class='odd'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="BooleanTermParser.html" title="BooleanTermParser (module)">BooleanTermParser</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_BooleanTermParser::Clause' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/Clause.html" title="BooleanTermParser::Clause (class)">Clause</a></span> &lt; Object<small class='search_info'>BooleanTermParser</small></div></li><li id='object_BooleanTermParser::Operator' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/Operator.html" title="BooleanTermParser::Operator (class)">Operator</a></span> &lt; Object<small class='search_info'>BooleanTermParser</small></div></li><li id='object_BooleanTermParser::Query' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/Query.html" title="BooleanTermParser::Query (class)">Query</a></span> &lt; Object<small class='search_info'>BooleanTermParser</small></div></li><li id='object_BooleanTermParser::QueryParser' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/QueryParser.html" title="BooleanTermParser::QueryParser (class)">QueryParser</a></span> &lt; Parser<small class='search_info'>BooleanTermParser</small></div></li><li id='object_BooleanTermParser::QueryTransformer' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/QueryTransformer.html" title="BooleanTermParser::QueryTransformer (class)">QueryTransformer</a></span> &lt; Transform<small class='search_info'>BooleanTermParser</small></div></li></ul></li><li id='object_Doing' class='odd'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="Doing.html" title="Doing (module)">Doing</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_Doing::Color' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Color.html" title="Doing::Color (module)">Color</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Completion' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Completion.html" title="Doing::Completion (module)">Completion</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Configuration' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Configuration.html" title="Doing::Configuration (class)">Configuration</a></span> &lt; Object<small class='search_info'>Doing</small></div></li><li id='object_Doing::Errors' class='collapsed odd'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Doing/Errors.html" title="Doing::Errors (module)">Errors</a></span><small class='search_info'>Doing</small></div><ul><li id='object_Doing::Errors::DoingNoTraceError' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/DoingNoTraceError.html" title="Doing::Errors::DoingNoTraceError (class)">DoingNoTraceError</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::DoingRuntimeError' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/DoingRuntimeError.html" title="Doing::Errors::DoingRuntimeError (class)">DoingRuntimeError</a></span> &lt; RuntimeError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::DoingStandardError' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/DoingStandardError.html" title="Doing::Errors::DoingStandardError (class)">DoingStandardError</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::EmptyInput' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/EmptyInput.html" title="Doing::Errors::EmptyInput (class)">EmptyInput</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::NoResults' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/NoResults.html" title="Doing::Errors::NoResults (class)">NoResults</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::PluginException' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/PluginException.html" title="Doing::Errors::PluginException (class)">PluginException</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::UserCancelled' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/UserCancelled.html" title="Doing::Errors::UserCancelled (class)">UserCancelled</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::WrongCommand' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/WrongCommand.html" title="Doing::Errors::WrongCommand (class)">WrongCommand</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li></ul></li><li id='object_Doing::Hooks' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Hooks.html" title="Doing::Hooks (module)">Hooks</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Item' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Item.html" title="Doing::Item (class)">Item</a></span> &lt; Object<small class='search_info'>Doing</small></div></li><li id='object_Doing::Items' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Items.html" title="Doing::Items (class)">Items</a></span> &lt; Array<small class='search_info'>Doing</small></div></li><li id='object_Doing::LogAdapter' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/LogAdapter.html" title="Doing::LogAdapter (class)">LogAdapter</a></span> &lt; Object<small class='search_info'>Doing</small></div></li><li id='object_Doing::Note' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Note.html" title="Doing::Note (class)">Note</a></span> &lt; Array<small class='search_info'>Doing</small></div></li><li id='object_Doing::Pager' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Pager.html" title="Doing::Pager (module)">Pager</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Plugins' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Plugins.html" title="Doing::Plugins (module)">Plugins</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Prompt' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Prompt.html" title="Doing::Prompt (module)">Prompt</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Section' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Section.html" title="Doing::Section (class)">Section</a></span> &lt; Object<small class='search_info'>Doing</small></div></li><li id='object_Doing::TemplateString' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/TemplateString.html" title="Doing::TemplateString (class)">TemplateString</a></span> &lt; String<small class='search_info'>Doing</small></div></li><li id='object_Doing::Util' class='collapsed even'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Doing/Util.html" title="Doing::Util (module)">Util</a></span><small class='search_info'>Doing</small></div><ul><li id='object_Doing::Util::Backup' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Util/Backup.html" title="Doing::Util::Backup (module)">Backup</a></span><small class='search_info'>Doing::Util</small></div></li></ul></li><li id='object_Doing::WWID' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/WWID.html" title="Doing::WWID (class)">WWID</a></span> &lt; Object<small class='search_info'>Doing</small></div></li></ul></li><li id='object_GLI' class='even'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="GLI.html" title="GLI (module)">GLI</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_GLI::Commands' class='collapsed odd'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="GLI/Commands.html" title="GLI::Commands (module)">Commands</a></span><small class='search_info'>GLI</small></div><ul><li id='object_GLI::Commands::MarkdownDocumentListener' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html" title="GLI::Commands::MarkdownDocumentListener (class)">MarkdownDocumentListener</a></span> &lt; Object<small class='search_info'>GLI::Commands</small></div></li></ul></li></ul></li><li id='object_Hash' class='even'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Hash.html" title="Hash (class)">Hash</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li><li id='object_PhraseParser' class='odd'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="PhraseParser.html" title="PhraseParser (module)">PhraseParser</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_PhraseParser::Operator' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/Operator.html" title="PhraseParser::Operator (class)">Operator</a></span> &lt; Object<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::PhraseClause' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/PhraseClause.html" title="PhraseParser::PhraseClause (class)">PhraseClause</a></span> &lt; Object<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::Query' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/Query.html" title="PhraseParser::Query (class)">Query</a></span> &lt; Object<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::QueryParser' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/QueryParser.html" title="PhraseParser::QueryParser (class)">QueryParser</a></span> &lt; Parser<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::QueryTransformer' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/QueryTransformer.html" title="PhraseParser::QueryTransformer (class)">QueryTransformer</a></span> &lt; Transform<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::TermClause' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/TermClause.html" title="PhraseParser::TermClause (class)">TermClause</a></span> &lt; Object<small class='search_info'>PhraseParser</small></div></li></ul></li><li id='object_Status' class='even'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Status.html" title="Status (module)">Status</a></span><small class='search_info'>Top Level Namespace</small></div></li><li id='object_String' class='odd'><div class='item' style='padding-left:30px'><span class='object_link'><a href="String.html" title="String (class)">String</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li><li id='object_Symbol' class='even'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Symbol.html" title="Symbol (class)">Symbol</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li><li id='object_Time' class='odd'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Time.html" title="Time (class)">Time</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li>
46
+ <li id='object_Array' class='even'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Array.html" title="Array (class)">Array</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li><li id='object_BooleanTermParser' class='odd'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="BooleanTermParser.html" title="BooleanTermParser (module)">BooleanTermParser</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_BooleanTermParser::Clause' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/Clause.html" title="BooleanTermParser::Clause (class)">Clause</a></span> &lt; Object<small class='search_info'>BooleanTermParser</small></div></li><li id='object_BooleanTermParser::Operator' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/Operator.html" title="BooleanTermParser::Operator (class)">Operator</a></span> &lt; Object<small class='search_info'>BooleanTermParser</small></div></li><li id='object_BooleanTermParser::Query' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/Query.html" title="BooleanTermParser::Query (class)">Query</a></span> &lt; Object<small class='search_info'>BooleanTermParser</small></div></li><li id='object_BooleanTermParser::QueryParser' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/QueryParser.html" title="BooleanTermParser::QueryParser (class)">QueryParser</a></span> &lt; Parser<small class='search_info'>BooleanTermParser</small></div></li><li id='object_BooleanTermParser::QueryTransformer' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="BooleanTermParser/QueryTransformer.html" title="BooleanTermParser::QueryTransformer (class)">QueryTransformer</a></span> &lt; Transform<small class='search_info'>BooleanTermParser</small></div></li></ul></li><li id='object_Doing' class='odd'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="Doing.html" title="Doing (module)">Doing</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_Doing::Color' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Color.html" title="Doing::Color (module)">Color</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Completion' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Completion.html" title="Doing::Completion (module)">Completion</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Configuration' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Configuration.html" title="Doing::Configuration (class)">Configuration</a></span> &lt; Object<small class='search_info'>Doing</small></div></li><li id='object_Doing::Errors' class='collapsed odd'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Doing/Errors.html" title="Doing::Errors (module)">Errors</a></span><small class='search_info'>Doing</small></div><ul><li id='object_Doing::Errors::DoingNoTraceError' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/DoingNoTraceError.html" title="Doing::Errors::DoingNoTraceError (class)">DoingNoTraceError</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::DoingRuntimeError' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/DoingRuntimeError.html" title="Doing::Errors::DoingRuntimeError (class)">DoingRuntimeError</a></span> &lt; RuntimeError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::DoingStandardError' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/DoingStandardError.html" title="Doing::Errors::DoingStandardError (class)">DoingStandardError</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::EmptyInput' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/EmptyInput.html" title="Doing::Errors::EmptyInput (class)">EmptyInput</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::NoResults' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/NoResults.html" title="Doing::Errors::NoResults (class)">NoResults</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::PluginException' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/PluginException.html" title="Doing::Errors::PluginException (class)">PluginException</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::UserCancelled' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/UserCancelled.html" title="Doing::Errors::UserCancelled (class)">UserCancelled</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li><li id='object_Doing::Errors::WrongCommand' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Errors/WrongCommand.html" title="Doing::Errors::WrongCommand (class)">WrongCommand</a></span> &lt; StandardError<small class='search_info'>Doing::Errors</small></div></li></ul></li><li id='object_Doing::Hooks' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Hooks.html" title="Doing::Hooks (module)">Hooks</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Item' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Item.html" title="Doing::Item (class)">Item</a></span> &lt; Object<small class='search_info'>Doing</small></div></li><li id='object_Doing::Items' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Items.html" title="Doing::Items (class)">Items</a></span> &lt; Array<small class='search_info'>Doing</small></div></li><li id='object_Doing::LogAdapter' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/LogAdapter.html" title="Doing::LogAdapter (class)">LogAdapter</a></span> &lt; Object<small class='search_info'>Doing</small></div></li><li id='object_Doing::Note' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Note.html" title="Doing::Note (class)">Note</a></span> &lt; Array<small class='search_info'>Doing</small></div></li><li id='object_Doing::Pager' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Pager.html" title="Doing::Pager (module)">Pager</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Plugins' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Plugins.html" title="Doing::Plugins (module)">Plugins</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Prompt' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Prompt.html" title="Doing::Prompt (module)">Prompt</a></span><small class='search_info'>Doing</small></div></li><li id='object_Doing::Section' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/Section.html" title="Doing::Section (class)">Section</a></span> &lt; Object<small class='search_info'>Doing</small></div></li><li id='object_Doing::TemplateString' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/TemplateString.html" title="Doing::TemplateString (class)">TemplateString</a></span> &lt; String<small class='search_info'>Doing</small></div></li><li id='object_Doing::Util' class='collapsed even'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Doing/Util.html" title="Doing::Util (module)">Util</a></span><small class='search_info'>Doing</small></div><ul><li id='object_Doing::Util::Backup' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Doing/Util/Backup.html" title="Doing::Util::Backup (module)">Backup</a></span><small class='search_info'>Doing::Util</small></div></li></ul></li><li id='object_Doing::WWID' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Doing/WWID.html" title="Doing::WWID (class)">WWID</a></span> &lt; Object<small class='search_info'>Doing</small></div></li></ul></li><li id='object_GLI' class='even'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="GLI.html" title="GLI (module)">GLI</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_GLI::Commands' class='collapsed odd'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="GLI/Commands.html" title="GLI::Commands (module)">Commands</a></span><small class='search_info'>GLI</small></div><ul><li id='object_GLI::Commands::MarkdownDocumentListener' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html" title="GLI::Commands::MarkdownDocumentListener (class)">MarkdownDocumentListener</a></span> &lt; Object<small class='search_info'>GLI::Commands</small></div></li></ul></li></ul></li><li id='object_Hash' class='even'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Hash.html" title="Hash (class)">Hash</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li><li id='object_Numeric' class='odd'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Numeric.html" title="Numeric (class)">Numeric</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li><li id='object_PhraseParser' class='even'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="PhraseParser.html" title="PhraseParser (module)">PhraseParser</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_PhraseParser::Operator' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/Operator.html" title="PhraseParser::Operator (class)">Operator</a></span> &lt; Object<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::PhraseClause' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/PhraseClause.html" title="PhraseParser::PhraseClause (class)">PhraseClause</a></span> &lt; Object<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::Query' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/Query.html" title="PhraseParser::Query (class)">Query</a></span> &lt; Object<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::QueryParser' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/QueryParser.html" title="PhraseParser::QueryParser (class)">QueryParser</a></span> &lt; Parser<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::QueryTransformer' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/QueryTransformer.html" title="PhraseParser::QueryTransformer (class)">QueryTransformer</a></span> &lt; Transform<small class='search_info'>PhraseParser</small></div></li><li id='object_PhraseParser::TermClause' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="PhraseParser/TermClause.html" title="PhraseParser::TermClause (class)">TermClause</a></span> &lt; Object<small class='search_info'>PhraseParser</small></div></li></ul></li><li id='object_Status' class='odd'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Status.html" title="Status (module)">Status</a></span><small class='search_info'>Top Level Namespace</small></div></li><li id='object_String' class='even'><div class='item' style='padding-left:30px'><span class='object_link'><a href="String.html" title="String (class)">String</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li><li id='object_Symbol' class='odd'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Symbol.html" title="Symbol (class)">Symbol</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li><li id='object_Time' class='even'><div class='item' style='padding-left:30px'><span class='object_link'><a href="Time.html" title="Time (class)">Time</a></span> &lt; Object<small class='search_info'>Top Level Namespace</small></div></li>
47
47
 
48
48
  </ul>
49
49
  </div>
@@ -59,39 +59,62 @@
59
59
 
60
60
  <div id="content"><div id='filecontents'><h1 id="doing">doing</h1>
61
61
 
62
- <p><strong>A command line tool for remembering what you were doing and tracking what you&#39;ve done.</strong></p>
62
+ <p><strong>A command line tool for remembering what you were doing and tracking what
63
+ you&#39;ve done.</strong></p>
63
64
 
64
- <p><em>If you&#39;re one of the rare people like me who find this useful, feel free to <a href="http://brettterpstra.com/donate/">buy me some coffee</a>.</em></p>
65
+ <p><em>If you&#39;re one of the rare people like me who find this useful, feel free to
66
+ <a href="http://brettterpstra.com/donate/">buy me some coffee</a>.</em></p>
65
67
 
66
68
  <!--README-->
67
69
 
68
- <p>The current version of <code>doing</code> is &lt;!--VER--&gt;2.1.12&lt;!--END VER--&gt;.</p>
70
+ <p>The current version of <code>doing</code> is &lt;!--VER--&gt;2.1.16&lt;!--END VER--&gt;.</p>
69
71
 
70
72
  <p>Find all of the documentation in the <a href="https://github.com/ttscoff/doing/wiki">doing wiki</a>.</p>
71
73
 
72
74
  <p>See <a href="https://brettterpstra.com/2021/11/20/doing-2-dot-0/">what&#39;s new in Doing 2.0</a>.</p>
73
75
 
74
- <p>Check out some craziness with Doing in the <a href="https://brettterpstra.com/2021/10/15/see-what-youre-doing-in-the-iterm-status-bar/">iTerm status bar</a> and the <a href="https://brettterpstra.com/2021/07/21/crazy-bettertouchtool-touch-bar-simulator/">Mac Touch Bar/menu bar</a>.</p>
76
+ <p>Check out some craziness with Doing in the <a href="https://brettterpstra.com/2021/10/15/see-what-youre-doing-in-the-iterm-status-bar/">iTerm status bar</a> and
77
+ the <a href="https://brettterpstra.com/2021/07/21/crazy-bettertouchtool-touch-bar-simulator/">Mac Touch Bar/menu bar</a>.</p>
75
78
 
76
79
  <h2 id="what-and-why">What and why</h2>
77
80
 
78
- <p><code>doing</code> is a basic CLI for adding and listing &quot;what was I doing&quot; reminders in a <a href="https://www.taskpaper.com">TaskPaper-formatted</a> text file. It allows for multiple sections/categories and flexible output formatting.</p>
81
+ <p><code>doing</code> is a basic CLI for adding and listing &quot;what was I doing&quot; reminders in a
82
+ <a href="https://www.taskpaper.com">TaskPaper-formatted</a> text file. It allows for
83
+ multiple sections/categories and flexible output formatting.</p>
79
84
 
80
- <p>While I&#39;m working, I have hourly reminders to record what I&#39;m working on, and I try to remember to punch in quick notes if I&#39;m unexpectedly called away from a project. I can do this just by typing <code>doing now tracking down the CG bug</code>. </p>
85
+ <p>While I&#39;m working, I have hourly reminders to record what I&#39;m working on, and I
86
+ try to remember to punch in quick notes if I&#39;m unexpectedly called away from a
87
+ project. I can do this just by typing <code>doing now tracking down the CG bug</code>.</p>
81
88
 
82
- <p>If there&#39;s something I want to look at later but doesn&#39;t need to be added to a task list or tracker, I can type <code>doing later check out the pinboard bookmarks from macdrifter</code>. When I get back to my computer --- or just need a refresher after a distraction --- I can type <code>doing last</code> to see what the last thing on my plate was. I can also type <code>doing recent</code> (or just <code>doing</code>) to get a list of the last few entries. <code>doing today</code> gives me everything since midnight for the current day, making it easy to see what I&#39;ve accomplished over a sleepless night. </p>
89
+ <p>If there&#39;s something I want to look at later but doesn&#39;t need to be added to a
90
+ task list or tracker, I can type <code>doing later check out the pinboard bookmarks
91
+ from macdrifter</code>. When I get back to my computer --- or just need a refresher
92
+ after a distraction --- I can type <code>doing last</code> to see what the last thing on
93
+ my plate was. I can also type <code>doing recent</code> (or just <code>doing</code>) to get a list of
94
+ the last few entries. <code>doing today</code> gives me everything since midnight for the
95
+ current day, making it easy to see what I&#39;ve accomplished over a sleepless
96
+ night.</p>
83
97
 
84
- <p>Doing has over 30 commands for tracking your status, recording your time, and analyzing the results.</p>
98
+ <p>Doing has over 30 commands for tracking your status, recording your time, and
99
+ analyzing the results.</p>
85
100
 
86
101
  <p>See <a href="https://github.com/ttscoff/doing/wiki">the wiki</a> for installation and usage instructions.</p>
87
102
 
88
103
  <h2 id="launchbar-alfred">Launchbar/Alfred</h2>
89
104
 
90
- <p>The LaunchBar action requires that <code>doing</code> be available in <code>/usr/local/bin/doing</code>. If it&#39;s not (because you&#39;re using RVM or similar), you&#39;ll need to symlink it there. Running the action with Return will show the latest 9 items from Currently, along with any time intervals recorded, and includes a submenu of Timers for each tag.</p>
105
+ <p>The LaunchBar action requires that <code>doing</code> be available in
106
+ <code>/usr/local/bin/doing</code>. If it&#39;s not (because you&#39;re using RVM or similar),
107
+ you&#39;ll need to symlink it there. Running the action with Return will show the
108
+ latest 9 items from Currently, along with any time intervals recorded, and
109
+ includes a submenu of Timers for each tag.</p>
91
110
 
92
- <p>Pressing Spacebar and typing allows you to add a new entry to currently. You an also trigger a custom show command by typing &quot;show [section/tag]&quot; and hitting return. Include any command line flags at the end of the string, and if you add text in parenthesis, it will be processed as a note on the entry.</p>
111
+ <p>Pressing Spacebar and typing allows you to add a new entry to currently. You an
112
+ also trigger a custom show command by typing &quot;show [section/tag]&quot; and hitting
113
+ return. Include any command line flags at the end of the string, and if you add
114
+ text in parenthesis, it will be processed as a note on the entry.</p>
93
115
 
94
- <p>Point of interest, the LaunchBar Action makes use of the <code>-o json</code> flag for outputting JSON to the action&#39;s script for parsing.</p>
116
+ <p>Point of interest, the LaunchBar Action makes use of the <code>-o json</code> flag for
117
+ outputting JSON to the action&#39;s script for parsing.</p>
95
118
 
96
119
  <!--GITHUB-->
97
120
 
@@ -103,13 +126,16 @@
103
126
  download 117 %
104
127
  -->
105
128
 
106
- <p>Evan Lovely has <a href="http://www.evanlovely.com/blog/technology/alfred-for-terpstras-doing/">created an Alfred workflow as well</a>.</p>
129
+ <p>Evan Lovely has created an <a href="http://www.evanlovely.com/blog/technology/alfred-for-terpstras-doing/">Alfred workflow</a> as well.</p>
107
130
 
108
131
  <h2 id="contributing">Contributing</h2>
109
132
 
110
- <p>If you <a href="https://github.com/ttscoff/doing/wiki/Creating-Plugins">create a plugin</a>, custom command, or hook you can share, please <a href="https://brettterpstra.com/contact/">let me know</a>. If I get a few plugin contributions, I&#39;ll set up a second repository for them.</p>
133
+ <p>If you <a href="https://github.com/ttscoff/doing/wiki/Creating-Plugins">create a plugin</a>, custom command, or hook you can share, please
134
+ <a href="https://brettterpstra.com/contact/">let me know</a>. If I get a few plugin contributions, I&#39;ll set up a
135
+ second repository for them.</p>
111
136
 
112
- <p>Feel free to fork <a href="https://github.com/ttscoff/doing/">the repository</a> on GitHub and make pull requests with changes. Please target the <code>develop</code> branch with pull requests.</p>
137
+ <p>Feel free to fork <a href="https://github.com/ttscoff/doing/">the repository</a> on GitHub and make pull requests
138
+ with changes. Please target the <code>develop</code> branch with pull requests.</p>
113
139
 
114
140
  <!--END README-->
115
141
 
@@ -123,7 +149,7 @@ download 117 %
123
149
  </div></div>
124
150
 
125
151
  <div id="footer">
126
- Generated on Fri Jan 14 21:59:13 2022 by
152
+ Generated on Tue Jan 18 07:38:21 2022 by
127
153
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
128
154
  0.9.26 (ruby-3.0.1).
129
155
  </div>
data/docs/doc/index.html CHANGED
@@ -59,39 +59,62 @@
59
59
 
60
60
  <div id="content"><div id='filecontents'><h1 id="doing">doing</h1>
61
61
 
62
- <p><strong>A command line tool for remembering what you were doing and tracking what you&#39;ve done.</strong></p>
62
+ <p><strong>A command line tool for remembering what you were doing and tracking what
63
+ you&#39;ve done.</strong></p>
63
64
 
64
- <p><em>If you&#39;re one of the rare people like me who find this useful, feel free to <a href="http://brettterpstra.com/donate/">buy me some coffee</a>.</em></p>
65
+ <p><em>If you&#39;re one of the rare people like me who find this useful, feel free to
66
+ <a href="http://brettterpstra.com/donate/">buy me some coffee</a>.</em></p>
65
67
 
66
68
  <!--README-->
67
69
 
68
- <p>The current version of <code>doing</code> is &lt;!--VER--&gt;2.1.12&lt;!--END VER--&gt;.</p>
70
+ <p>The current version of <code>doing</code> is &lt;!--VER--&gt;2.1.16&lt;!--END VER--&gt;.</p>
69
71
 
70
72
  <p>Find all of the documentation in the <a href="https://github.com/ttscoff/doing/wiki">doing wiki</a>.</p>
71
73
 
72
74
  <p>See <a href="https://brettterpstra.com/2021/11/20/doing-2-dot-0/">what&#39;s new in Doing 2.0</a>.</p>
73
75
 
74
- <p>Check out some craziness with Doing in the <a href="https://brettterpstra.com/2021/10/15/see-what-youre-doing-in-the-iterm-status-bar/">iTerm status bar</a> and the <a href="https://brettterpstra.com/2021/07/21/crazy-bettertouchtool-touch-bar-simulator/">Mac Touch Bar/menu bar</a>.</p>
76
+ <p>Check out some craziness with Doing in the <a href="https://brettterpstra.com/2021/10/15/see-what-youre-doing-in-the-iterm-status-bar/">iTerm status bar</a> and
77
+ the <a href="https://brettterpstra.com/2021/07/21/crazy-bettertouchtool-touch-bar-simulator/">Mac Touch Bar/menu bar</a>.</p>
75
78
 
76
79
  <h2 id="what-and-why">What and why</h2>
77
80
 
78
- <p><code>doing</code> is a basic CLI for adding and listing &quot;what was I doing&quot; reminders in a <a href="https://www.taskpaper.com">TaskPaper-formatted</a> text file. It allows for multiple sections/categories and flexible output formatting.</p>
81
+ <p><code>doing</code> is a basic CLI for adding and listing &quot;what was I doing&quot; reminders in a
82
+ <a href="https://www.taskpaper.com">TaskPaper-formatted</a> text file. It allows for
83
+ multiple sections/categories and flexible output formatting.</p>
79
84
 
80
- <p>While I&#39;m working, I have hourly reminders to record what I&#39;m working on, and I try to remember to punch in quick notes if I&#39;m unexpectedly called away from a project. I can do this just by typing <code>doing now tracking down the CG bug</code>. </p>
85
+ <p>While I&#39;m working, I have hourly reminders to record what I&#39;m working on, and I
86
+ try to remember to punch in quick notes if I&#39;m unexpectedly called away from a
87
+ project. I can do this just by typing <code>doing now tracking down the CG bug</code>.</p>
81
88
 
82
- <p>If there&#39;s something I want to look at later but doesn&#39;t need to be added to a task list or tracker, I can type <code>doing later check out the pinboard bookmarks from macdrifter</code>. When I get back to my computer --- or just need a refresher after a distraction --- I can type <code>doing last</code> to see what the last thing on my plate was. I can also type <code>doing recent</code> (or just <code>doing</code>) to get a list of the last few entries. <code>doing today</code> gives me everything since midnight for the current day, making it easy to see what I&#39;ve accomplished over a sleepless night. </p>
89
+ <p>If there&#39;s something I want to look at later but doesn&#39;t need to be added to a
90
+ task list or tracker, I can type <code>doing later check out the pinboard bookmarks
91
+ from macdrifter</code>. When I get back to my computer --- or just need a refresher
92
+ after a distraction --- I can type <code>doing last</code> to see what the last thing on
93
+ my plate was. I can also type <code>doing recent</code> (or just <code>doing</code>) to get a list of
94
+ the last few entries. <code>doing today</code> gives me everything since midnight for the
95
+ current day, making it easy to see what I&#39;ve accomplished over a sleepless
96
+ night.</p>
83
97
 
84
- <p>Doing has over 30 commands for tracking your status, recording your time, and analyzing the results.</p>
98
+ <p>Doing has over 30 commands for tracking your status, recording your time, and
99
+ analyzing the results.</p>
85
100
 
86
101
  <p>See <a href="https://github.com/ttscoff/doing/wiki">the wiki</a> for installation and usage instructions.</p>
87
102
 
88
103
  <h2 id="launchbar-alfred">Launchbar/Alfred</h2>
89
104
 
90
- <p>The LaunchBar action requires that <code>doing</code> be available in <code>/usr/local/bin/doing</code>. If it&#39;s not (because you&#39;re using RVM or similar), you&#39;ll need to symlink it there. Running the action with Return will show the latest 9 items from Currently, along with any time intervals recorded, and includes a submenu of Timers for each tag.</p>
105
+ <p>The LaunchBar action requires that <code>doing</code> be available in
106
+ <code>/usr/local/bin/doing</code>. If it&#39;s not (because you&#39;re using RVM or similar),
107
+ you&#39;ll need to symlink it there. Running the action with Return will show the
108
+ latest 9 items from Currently, along with any time intervals recorded, and
109
+ includes a submenu of Timers for each tag.</p>
91
110
 
92
- <p>Pressing Spacebar and typing allows you to add a new entry to currently. You an also trigger a custom show command by typing &quot;show [section/tag]&quot; and hitting return. Include any command line flags at the end of the string, and if you add text in parenthesis, it will be processed as a note on the entry.</p>
111
+ <p>Pressing Spacebar and typing allows you to add a new entry to currently. You an
112
+ also trigger a custom show command by typing &quot;show [section/tag]&quot; and hitting
113
+ return. Include any command line flags at the end of the string, and if you add
114
+ text in parenthesis, it will be processed as a note on the entry.</p>
93
115
 
94
- <p>Point of interest, the LaunchBar Action makes use of the <code>-o json</code> flag for outputting JSON to the action&#39;s script for parsing.</p>
116
+ <p>Point of interest, the LaunchBar Action makes use of the <code>-o json</code> flag for
117
+ outputting JSON to the action&#39;s script for parsing.</p>
95
118
 
96
119
  <!--GITHUB-->
97
120
 
@@ -103,13 +126,16 @@
103
126
  download 117 %
104
127
  -->
105
128
 
106
- <p>Evan Lovely has <a href="http://www.evanlovely.com/blog/technology/alfred-for-terpstras-doing/">created an Alfred workflow as well</a>.</p>
129
+ <p>Evan Lovely has created an <a href="http://www.evanlovely.com/blog/technology/alfred-for-terpstras-doing/">Alfred workflow</a> as well.</p>
107
130
 
108
131
  <h2 id="contributing">Contributing</h2>
109
132
 
110
- <p>If you <a href="https://github.com/ttscoff/doing/wiki/Creating-Plugins">create a plugin</a>, custom command, or hook you can share, please <a href="https://brettterpstra.com/contact/">let me know</a>. If I get a few plugin contributions, I&#39;ll set up a second repository for them.</p>
133
+ <p>If you <a href="https://github.com/ttscoff/doing/wiki/Creating-Plugins">create a plugin</a>, custom command, or hook you can share, please
134
+ <a href="https://brettterpstra.com/contact/">let me know</a>. If I get a few plugin contributions, I&#39;ll set up a
135
+ second repository for them.</p>
111
136
 
112
- <p>Feel free to fork <a href="https://github.com/ttscoff/doing/">the repository</a> on GitHub and make pull requests with changes. Please target the <code>develop</code> branch with pull requests.</p>
137
+ <p>Feel free to fork <a href="https://github.com/ttscoff/doing/">the repository</a> on GitHub and make pull requests
138
+ with changes. Please target the <code>develop</code> branch with pull requests.</p>
113
139
 
114
140
  <!--END README-->
115
141
 
@@ -123,7 +149,7 @@ download 117 %
123
149
  </div></div>
124
150
 
125
151
  <div id="footer">
126
- Generated on Fri Jan 14 21:59:13 2022 by
152
+ Generated on Tue Jan 18 07:38:21 2022 by
127
153
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
128
154
  0.9.26 (ruby-3.0.1).
129
155
  </div>