doing 2.0.3.pre → 2.0.8.pre

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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +40 -1
  3. data/Gemfile.lock +1 -1
  4. data/README.md +1 -1
  5. data/bin/doing +316 -114
  6. data/doing.rdoc +244 -19
  7. data/example_plugin.rb +1 -1
  8. data/generate_completions.sh +1 -0
  9. data/lib/completion/_doing.zsh +179 -127
  10. data/lib/completion/doing.bash +60 -27
  11. data/lib/completion/doing.fish +74 -23
  12. data/lib/doing/cli_status.rb +4 -0
  13. data/lib/doing/configuration.rb +2 -0
  14. data/lib/doing/errors.rb +22 -15
  15. data/lib/doing/item.rb +12 -11
  16. data/lib/doing/log_adapter.rb +27 -25
  17. data/lib/doing/plugin_manager.rb +1 -1
  18. data/lib/doing/plugins/export/json_export.rb +2 -2
  19. data/lib/doing/plugins/export/template_export.rb +1 -1
  20. data/lib/doing/plugins/import/calendar_import.rb +7 -1
  21. data/lib/doing/plugins/import/doing_import.rb +6 -6
  22. data/lib/doing/plugins/import/timing_import.rb +7 -1
  23. data/lib/doing/string.rb +9 -7
  24. data/lib/doing/version.rb +1 -1
  25. data/lib/doing/wwid.rb +160 -92
  26. data/lib/examples/commands/autotag.rb +63 -0
  27. data/lib/examples/commands/wiki.rb +1 -0
  28. data/lib/examples/plugins/say_export.rb +1 -1
  29. data/lib/examples/plugins/{templates → wiki_export/templates}/wiki.css +0 -0
  30. data/lib/examples/plugins/{templates → wiki_export/templates}/wiki.haml +0 -0
  31. data/lib/examples/plugins/{templates → wiki_export/templates}/wiki_index.haml +0 -0
  32. data/lib/examples/plugins/{wiki_export.rb → wiki_export/wiki_export.rb} +0 -0
  33. data/scripts/generate_bash_completions.rb +3 -2
  34. data/scripts/generate_fish_completions.rb +4 -1
  35. data/scripts/generate_zsh_completions.rb +44 -39
  36. metadata +7 -7
  37. data/doing.fish +0 -278
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2fa49c423dee61b9691c8b9c075d9f9dc366908783518e525ceda7c5aaad13d3
4
- data.tar.gz: '08b1a46254fd97c5c3e39d0f8450bd651714ea6c68c2c7c921a4a5a4aa8603fc'
3
+ metadata.gz: 395218e7fd0178eb8d626e58c6b4ec078ff2631506829f98e7a41daacc7dd9bc
4
+ data.tar.gz: c7bda7d2e832b3f657f409c512f16bf71b8d0b247b776c4f3ce467c399482241
5
5
  SHA512:
6
- metadata.gz: c7efe2328eece13d03c13e62a86668229a110ceb0338145cf234cf9699c93070ccae0e52198c00b5c9789f50ac419a1f26952130a988a4594ddd4018ea217b50
7
- data.tar.gz: a9d6e519be45123d1303210e9af0835d7ef61ca7378ded0f0afd8eb4ef09c4879ee568e35d2159c26448d4ff93d1ee02ecdc8bcdfb6a0513b79cfbc774c1025c
6
+ metadata.gz: 73d7cfcafe737b446a6fec46a8bb8ae41503137240546cd361b1f6f292ecbf6a37c361a4708aeb9a4efcfddf76e42515e580a6c03b86c5512082e90e2bd8b325
7
+ data.tar.gz: 4f5ccc666a48629fe674923dfece11a872b59b5af7329f7484c777b4cc6166bebb287df5f19ea2d802212e553d03a2ac4b853f31c1f41f4204b6293838cd2695
data/CHANGELOG.md CHANGED
@@ -1,4 +1,43 @@
1
- ### 2.0.2.pre
1
+ ### 2.0.8.pre
2
+
3
+ #### NEW
4
+
5
+ - Add `--exact` flag to all commands with `--search` flag to force exact matching without requiring single quote prefix
6
+ - Add `--not` flag to all commands with filters (--tag, --search, --before, etc.) to negate the filter and return entries NOT matched
7
+
8
+ ### 2.0.7.pre
9
+
10
+ #### FIXED
11
+
12
+ - Zsh completion not outputting results
13
+
14
+ ### 2.0.6.pre
15
+
16
+ #### NEW
17
+
18
+ - If `doing view` and `doing show` are confused, offer option to run the other command
19
+ - `doing completion` to generate shell completion scripts for zsh, bash, and fish
20
+
21
+ #### IMPROVED
22
+
23
+ - More command line feedback
24
+ - Error formatting and output
25
+ - Add subcommand completion for `doing help` in fish shell
26
+ - Logging and error handling
27
+
28
+ #### FIXED
29
+
30
+ - Remove `--[no]` from non-negatable options
31
+ - `doing plugins -t export -c` not outputting columns
32
+ - View config not respecting tag_order setting
33
+
34
+ ### 2.0.5.pre
35
+
36
+ #### NEW
37
+
38
+ - Add 'timer_format' config with 'human' option for tag totals
39
+
40
+ ### 2.0.3.pre
2
41
 
3
42
  #### NEW
4
43
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- doing (2.0.2.pre)
4
+ doing (2.0.8.pre)
5
5
  chronic (~> 0.10, >= 0.10.2)
6
6
  deep_merge (~> 1.2, >= 1.2.1)
7
7
  gli (~> 2.19, >= 2.19.2)
data/README.md CHANGED
@@ -6,7 +6,7 @@ _If you're one of the rare people like me who find this useful, feel free to [bu
6
6
 
7
7
  <!--README-->
8
8
 
9
- The current version of `doing` is <!--VER-->2.0.0<!--END VER-->.
9
+ The current version of `doing` is <!--VER-->2.0.7<!--END VER-->.
10
10
 
11
11
  Find all of the documentation in the [doing wiki](https://github.com/ttscoff/doing/wiki).
12
12