doing 2.1.2pre → 2.1.6pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardoc/checksums +19 -15
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardopts +1 -1
- data/CHANGELOG.md +62 -14
- data/Gemfile.lock +25 -1
- data/README.md +5 -1
- data/Rakefile +2 -0
- data/bin/doing +429 -142
- data/docs/_config.yml +1 -0
- data/{doc → docs/doc}/Array.html +63 -1
- data/docs/doc/BooleanTermParser/Clause.html +293 -0
- data/docs/doc/BooleanTermParser/Operator.html +172 -0
- data/docs/doc/BooleanTermParser/Query.html +417 -0
- data/docs/doc/BooleanTermParser/QueryParser.html +135 -0
- data/docs/doc/BooleanTermParser/QueryTransformer.html +124 -0
- data/docs/doc/BooleanTermParser.html +115 -0
- data/docs/doc/Doing/CLIFormat.html +131 -0
- data/{doc → docs/doc}/Doing/Color.html +2 -2
- data/{doc → docs/doc}/Doing/Completion.html +1 -1
- data/{doc → docs/doc}/Doing/Configuration.html +163 -69
- data/{doc → docs/doc}/Doing/Content.html +0 -0
- data/{doc → docs/doc}/Doing/Errors/DoingNoTraceError.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/DoingRuntimeError.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/DoingStandardError.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/EmptyInput.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/NoResults.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/PluginException.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/UserCancelled.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/WrongCommand.html +1 -1
- data/{doc → docs/doc}/Doing/Errors.html +1 -1
- data/{doc → docs/doc}/Doing/Hooks.html +1 -1
- data/{doc → docs/doc}/Doing/Item.html +135 -89
- data/{doc → docs/doc}/Doing/Items.html +36 -2
- data/{doc → docs/doc}/Doing/LogAdapter.html +70 -1
- data/{doc → docs/doc}/Doing/Note.html +5 -134
- data/{doc → docs/doc}/Doing/Pager.html +1 -1
- data/{doc → docs/doc}/Doing/Plugins.html +431 -35
- data/{doc → docs/doc}/Doing/Prompt.html +70 -18
- data/{doc → docs/doc}/Doing/Section.html +1 -1
- data/docs/doc/Doing/TemplateString.html +713 -0
- data/docs/doc/Doing/Util/Backup.html +686 -0
- data/{doc → docs/doc}/Doing/Util.html +16 -4
- data/{doc → docs/doc}/Doing/WWID.html +133 -73
- data/{doc → docs/doc}/Doing/WWIDFile.html +0 -0
- data/{doc → docs/doc}/Doing.html +4 -4
- data/{doc → docs/doc}/GLI/Commands/MarkdownDocumentListener.html +1 -1
- data/{doc → docs/doc}/GLI/Commands.html +1 -1
- data/{doc → docs/doc}/GLI.html +1 -1
- data/{doc → docs/doc}/Hash.html +1 -1
- data/docs/doc/PhraseParser/Operator.html +172 -0
- data/docs/doc/PhraseParser/PhraseClause.html +303 -0
- data/docs/doc/PhraseParser/Query.html +495 -0
- data/docs/doc/PhraseParser/QueryParser.html +136 -0
- data/docs/doc/PhraseParser/QueryTransformer.html +124 -0
- data/docs/doc/PhraseParser/TermClause.html +293 -0
- data/docs/doc/PhraseParser.html +115 -0
- data/{doc → docs/doc}/Status.html +1 -1
- data/{doc → docs/doc}/String.html +319 -13
- data/{doc → docs/doc}/Symbol.html +35 -1
- data/{doc → docs/doc}/Time.html +70 -2
- data/{doc → docs/doc}/_index.html +132 -4
- data/docs/doc/class_list.html +51 -0
- data/{doc → docs/doc}/css/common.css +0 -0
- data/{doc → docs/doc}/css/full_list.css +0 -0
- data/{doc → docs/doc}/css/style.css +0 -0
- data/{doc → docs/doc}/file.README.html +6 -2
- data/{doc → docs/doc}/file_list.html +0 -0
- data/{doc → docs/doc}/frames.html +0 -0
- data/{doc → docs/doc}/index.html +6 -2
- data/{doc → docs/doc}/js/app.js +0 -0
- data/{doc → docs/doc}/js/full_list.js +0 -0
- data/{doc → docs/doc}/js/jquery.js +0 -0
- data/{doc → docs/doc}/method_list.html +684 -196
- data/{doc → docs/doc}/top-level-namespace.html +2 -2
- data/docs/index.md +60 -0
- data/doing.gemspec +3 -0
- data/doing.rdoc +222 -74
- data/example_plugin.rb +3 -1
- data/lib/completion/_doing.zsh +53 -41
- data/lib/completion/doing.bash +17 -6
- data/lib/completion/doing.fish +321 -2
- data/lib/doing/array.rb +9 -0
- data/lib/doing/boolean_term_parser.rb +86 -0
- data/lib/doing/completion/fish_completion.rb +46 -3
- data/lib/doing/completion/zsh_completion.rb +1 -1
- data/lib/doing/configuration.rb +48 -21
- data/lib/doing/item.rb +105 -10
- data/lib/doing/items.rb +6 -0
- data/lib/doing/log_adapter.rb +28 -0
- data/lib/doing/note.rb +31 -30
- data/lib/doing/phrase_parser.rb +124 -0
- data/lib/doing/plugin_manager.rb +84 -21
- data/lib/doing/plugins/export/dayone_export.rb +209 -0
- data/lib/doing/plugins/export/html_export.rb +2 -2
- data/lib/doing/plugins/export/json_export.rb +1 -0
- data/lib/doing/plugins/export/markdown_export.rb +1 -1
- data/lib/doing/plugins/export/template_export.rb +94 -86
- data/lib/doing/prompt.rb +26 -15
- data/lib/doing/string.rb +114 -29
- data/lib/doing/string_chronify.rb +5 -1
- data/lib/doing/symbol.rb +4 -0
- data/lib/doing/template_string.rb +197 -0
- data/lib/doing/time.rb +32 -0
- data/lib/doing/util.rb +6 -7
- data/lib/doing/util_backup.rb +287 -0
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +105 -41
- data/lib/doing.rb +9 -0
- data/lib/examples/plugins/say_export.rb +1 -1
- data/lib/examples/plugins/wiki_export/wiki_export.rb +3 -3
- data/lib/templates/doing-dayone-entry.erb +6 -0
- data/lib/templates/doing-dayone.erb +5 -0
- metadata +136 -51
- data/doc/class_list.html +0 -51
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8a14370ab8e66fdd3fe54a696dfab912d59e9e2ea750dc9d521f4b5ad801adb
|
4
|
+
data.tar.gz: 5972acb83a872eb997c607c9d4e3804a74ec91868b7d41767ee6c130fb41a569
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e429e785f8c3991e288f7ebfc31162545ea8937437a5ee56ddd45f5fc9b7e770828d1f7232e4ae7cf0445826da33c968d0a98fefe9eb2011e5342054d32292dd
|
7
|
+
data.tar.gz: 448be91ef6a0d21ef9d56b32f5647b54a85bbd54e654e8b8f3702ae6a3fee3be385499abb4dd0f1cca6f955ecac8bd246381d4ba5a04e3966a127af0ee797393
|
data/.yardoc/checksums
CHANGED
@@ -1,24 +1,28 @@
|
|
1
1
|
lib/doing/hash.rb c2960de9603dcf90be85ce423d9430de27f4f893
|
2
|
-
lib/doing/item.rb
|
3
|
-
lib/doing/note.rb
|
4
|
-
lib/doing/time.rb
|
5
|
-
lib/doing/util.rb
|
6
|
-
lib/doing/wwid.rb
|
7
|
-
lib/doing/array.rb
|
2
|
+
lib/doing/item.rb fcf106fb43a1a979d5213c8ac47161d9f6d8635f
|
3
|
+
lib/doing/note.rb bbadd9e34e6dc43a2af1110a5107f46c39d2547f
|
4
|
+
lib/doing/time.rb 4411af636082d3abf6f6402a7d6c9038d96a9ead
|
5
|
+
lib/doing/util.rb 33ad79455893213a0f2993edec0e158526657f09
|
6
|
+
lib/doing/wwid.rb ad6f25cd249c973c112665c9966c9f8cd1cb7cb2
|
7
|
+
lib/doing/array.rb a17004c4811d239932254f9ed94a6eb10456c8e8
|
8
8
|
lib/doing/hooks.rb 00feacdbf24dc67951c49ca8c1ca9a568441920e
|
9
|
-
lib/doing/items.rb
|
9
|
+
lib/doing/items.rb 0860a0ac7269f59de994ae900c980e49359dc8d5
|
10
10
|
lib/doing/pager.rb 230c10dea5e9c68b5709a0f4cb088c76970965e4
|
11
11
|
lib/doing/colors.rb 9a628d48c821313c502deedc5b61a046a2bf79ef
|
12
12
|
lib/doing/errors.rb af07e482a5389924edc2337749c81cda501098f0
|
13
|
-
lib/doing/prompt.rb
|
14
|
-
lib/doing/string.rb
|
15
|
-
lib/doing/symbol.rb
|
13
|
+
lib/doing/prompt.rb df41a7e4328cc38b5c170af3de6ef2b0bf1fcc49
|
14
|
+
lib/doing/string.rb 8f6d1f8ba765bedf72f1af23be3617ce03aebb03
|
15
|
+
lib/doing/symbol.rb f18605aac49be688c9641de9564e48055a0f3757
|
16
16
|
lib/doing/section.rb 206e119cf818f1e76798753e611180fe77bc299a
|
17
|
-
lib/doing/version.rb
|
17
|
+
lib/doing/version.rb 523d519cce7e8211cb69aef8f516cd5023aeb6ee
|
18
18
|
lib/doing/cli_status.rb dbedd454c4cbbd0fed9ef30120f6ec85d18b9356
|
19
19
|
lib/doing/completion.rb 3b291eb38e651ea993d04db592a5e743057626e6
|
20
|
-
lib/doing/log_adapter.rb
|
21
|
-
lib/doing/
|
22
|
-
lib/doing/
|
23
|
-
lib/doing/
|
20
|
+
lib/doing/log_adapter.rb 9f2060c4f4c77b4facd94fc63aa9304c091c34d4
|
21
|
+
lib/doing/util_backup.rb 3c206b96327d345ead2ea51e399180c590812490
|
22
|
+
lib/doing/configuration.rb 5c38d6b99f4ab2ae67462886e0459217f8fc8ea7
|
23
|
+
lib/doing/phrase_parser.rb 8f1789d7cf8326d8cc231b4a21505a93f8de20d2
|
24
|
+
lib/doing/plugin_manager.rb cb16a82c3182ef7008359670ab96ff6b39270ccc
|
25
|
+
lib/doing/string_chronify.rb ccbb08389d2139c7121203f8585864e3026d1526
|
26
|
+
lib/doing/template_string.rb 6dfb28b922059189b072e6d9fe1fcba8aad6c6fe
|
27
|
+
lib/doing/boolean_term_parser.rb 075977892ac5c6e3435cb8877d8b8b68eb1962e3
|
24
28
|
lib/doing/markdown_document_listener.rb 45485f225068a34951ec818a345f642323e5ba35
|
data/.yardoc/object_types
CHANGED
Binary file
|
data/.yardoc/objects/root.dat
CHANGED
Binary file
|
data/.yardopts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
--markup-provider=redcarpet --markup=markdown --no-private --exclude=README.md lib/doing/*.rb
|
1
|
+
--output-dir docs/doc --markup-provider=redcarpet --markup=markdown --no-private --exclude=README.md lib/doing/*.rb
|
data/CHANGELOG.md
CHANGED
@@ -1,31 +1,63 @@
|
|
1
|
-
### 2.1.
|
1
|
+
### 2.1.6pre
|
2
2
|
|
3
3
|
#### NEW
|
4
4
|
|
5
|
-
-
|
6
|
-
- Add `interval_format` setting to config (applies to root or any view/template) to set intervals/durations to human (2h 15m) or text (00:02:15)
|
7
|
-
- Add `duration` key to config (root or view/template). If set to true, will display durations by default (no need for `--duration`)
|
8
|
-
- Most display commands now have a `--duration` flag that will display an elapsed time if the entry is not marked @done
|
5
|
+
- Hidden command `doing commands_accepting` which shows all commands that accept a given option, e.g. `doing commands_accepting search` shows all commands that take a search filter
|
9
6
|
|
10
7
|
#### IMPROVED
|
11
8
|
|
12
|
-
-
|
9
|
+
- The output of `doing template --list` now shows the file type of each template
|
10
|
+
- Output templates can now be saved to a default location/filename using `doing template html --save`
|
13
11
|
|
14
|
-
### 2.1.
|
12
|
+
### 2.1.5pre
|
15
13
|
|
16
14
|
#### NEW
|
17
15
|
|
18
|
-
-
|
19
|
-
-
|
20
|
-
|
21
|
-
|
16
|
+
- Interactive option for redo command
|
17
|
+
- Plugins for Day One export
|
18
|
+
|
19
|
+
#### IMPROVED
|
20
|
+
|
21
|
+
- Matching algorithm can be configured in settings
|
22
|
+
- All template placeholders can now use the "printf" formatting that %title and %note have, allowing for padding, prefixes, etc.
|
23
|
+
- Move default locations for doing file and backups to ~/.local/share/doing
|
24
|
+
- `doing show --menu` will only offer tags that exist after any tag/search filters have been run
|
25
|
+
- `doing show @tag` with `--menu` will first filter by the @tag, then do an OR search for tags selected from the menu
|
22
26
|
|
23
27
|
#### FIXED
|
24
28
|
|
25
|
-
-
|
26
|
-
-
|
29
|
+
- Preserve colors when wrapping text to new lines
|
30
|
+
- Tag highlighting errors
|
31
|
+
- Template options specified in views were being overriden by options in templates. View config now has precedence, but will fall back to template config for missing keys
|
32
|
+
|
33
|
+
### 2.1.4pre
|
34
|
+
|
35
|
+
#### NEW
|
36
|
+
|
37
|
+
- `doing redo` undoes a redo
|
38
|
+
- `doing undo -i` offers a list of available versions for selection
|
39
|
+
- Multiple undo. Every time a command modifies the doing file, a backup is written. Running `doing undo` repeatedly steps back through history, `doing undo 5` jumps back 5 versions
|
40
|
+
- When resetting via `doing select`, prompt for a date string
|
41
|
+
- `doing reset` accepts a date string argument to use as start date instead of current time if provided
|
42
|
+
- `doing tags` lists tags used in any/all sections, sortable, with or without frequency counts
|
43
|
+
- `doing show --menu` offers an interactive menu for selecting section and tag filters
|
44
|
+
- All commands that accept a `--tag` filter can now handle wildcards in the tag names. * to match any number of characters, ? to match a single character.
|
45
|
+
- New boolean type for tag searches, PATTERN (which is now the default). Combine tags using symbols to create more complex boolean searches, e.g. "doing +coding -work"
|
46
|
+
- You can now define `date_tags` in config, an array of tags/patterns that will be recognized when parsing for natural language dates which are converted when saving new entries
|
47
|
+
- `--search` strings can contain quoted phrases and use +/- to require or ban terms, e.g. `--search 'doing +coding -writing'
|
48
|
+
|
49
|
+
#### IMPROVED
|
50
|
+
|
51
|
+
- Better diff output for fzf preview of `doing undo` history
|
52
|
+
- Fall back to good ol' sed for colorizing diffs when no good tool is available
|
53
|
+
- `doing redo` (a.k.a. `doing undo --redo`) can be run multiple times, stepping forward through undo history. Can also take a count to jump
|
54
|
+
|
55
|
+
#### FIXED
|
56
|
+
|
57
|
+
- `doing reset` without filter not automatically affecting most recent entry
|
58
|
+
- `config set` now preserves value type (string, array, mapping) of previous value, coercing new value if needed
|
27
59
|
|
28
|
-
### 2.1.
|
60
|
+
### 2.1.3
|
29
61
|
|
30
62
|
#### NEW
|
31
63
|
|
@@ -34,6 +66,14 @@
|
|
34
66
|
- `config list` will list detected .doingrc files and the main config file in order of precedence - refactoring
|
35
67
|
- When modifying start dates or @done dates via an editor command, natural language strings can be used and will be parsed into doing-formatted dates automatically
|
36
68
|
- When editor is invoked, entry titles include start date, which can be modified
|
69
|
+
- --before, --after, and --from date filters for select command
|
70
|
+
- --from flag for `doing today` and `doing yesterday`, filter by time range
|
71
|
+
- --from flag for `doing search`, filter by date/time range
|
72
|
+
- Commands that accept --before, --after, and --from can now filter on time ranges. If the date string given contains only a time (no day or date), it will be interpreted as a time range, meaning the date isn't filtered, but only entries within the time range are shown/processed
|
73
|
+
- Add %duration placeholder to template variables
|
74
|
+
- Add `interval_format` setting to config (applies to root or any view/template) to set intervals/durations to human (2h 15m) or text (00:02:15)
|
75
|
+
- Add `duration` key to config (root or view/template). If set to true, will display durations by default (no need for `--duration`)
|
76
|
+
- Most display commands now have a `--duration` flag that will display an elapsed time if the entry is not marked @done
|
37
77
|
|
38
78
|
#### IMPROVED
|
39
79
|
|
@@ -41,6 +81,14 @@
|
|
41
81
|
- Config -o json no longer includes key, only value.
|
42
82
|
- System agnostic method for checking available executables (pager, editor)
|
43
83
|
- Using `config set` and selecting a local config will no longer write the entire config to the local .doingrc. Instead, a nested path to the particular setting will be added to the config file.
|
84
|
+
- Config set will create missing keys. Fuzzy matching will work until the path fails, then path elements after that point will be added as verbatim keys to the specified configuration (with confirmation)
|
85
|
+
- Make menus only as tall as needed, so 5 options don't take up the whole screen
|
86
|
+
- Better word wrap for long note lines
|
87
|
+
|
88
|
+
#### FIXED
|
89
|
+
|
90
|
+
- `finish --took 60m` is supposed to backdate the start date if needed to finish at the current time and maintain an elapsed time
|
91
|
+
- If an editor was specified for config (or default as fallback) with command line options (e.g. `emacs -nw`), Doing would fail to recognize that the executable was available.
|
44
92
|
|
45
93
|
### 2.0.25
|
46
94
|
|
data/Gemfile.lock
CHANGED
@@ -1,13 +1,16 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
doing (2.1.
|
4
|
+
doing (2.1.6pre)
|
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)
|
8
8
|
haml (~> 5.0.0, >= 5.0.0)
|
9
|
+
parslet (~> 2.0, >= 2.0.0)
|
10
|
+
plist (~> 3.6, >= 3.6.0)
|
9
11
|
safe_yaml (~> 1.0)
|
10
12
|
tty-link (~> 0.1, >= 0.1.1)
|
13
|
+
tty-markdown (~> 0.7, >= 0.7.0)
|
11
14
|
tty-progressbar (~> 0.18, >= 0.18.2)
|
12
15
|
tty-which (~> 0.5, >= 0.5.0)
|
13
16
|
|
@@ -72,12 +75,18 @@ GEM
|
|
72
75
|
tilt
|
73
76
|
i18n (1.8.11)
|
74
77
|
concurrent-ruby (~> 1.0)
|
78
|
+
kramdown (2.3.1)
|
79
|
+
rexml
|
75
80
|
middleware (0.1.0)
|
76
81
|
minitest (5.14.4)
|
77
82
|
multi_test (0.1.2)
|
78
83
|
parallel (1.21.0)
|
79
84
|
parallel_tests (3.7.3)
|
80
85
|
parallel
|
86
|
+
parslet (2.0.0)
|
87
|
+
pastel (0.8.0)
|
88
|
+
tty-color (~> 0.5)
|
89
|
+
plist (3.6.0)
|
81
90
|
power_assert (2.0.1)
|
82
91
|
protobuf-cucumber (3.10.8)
|
83
92
|
activesupport (>= 3.2)
|
@@ -87,11 +96,17 @@ GEM
|
|
87
96
|
rake (13.0.6)
|
88
97
|
rdoc (6.3.3)
|
89
98
|
redcarpet (3.5.1)
|
99
|
+
rexml (3.2.5)
|
100
|
+
rouge (3.27.0)
|
90
101
|
rspec-expectations (3.10.1)
|
91
102
|
diff-lcs (>= 1.2.0, < 2.0)
|
92
103
|
rspec-support (~> 3.10.0)
|
93
104
|
rspec-support (3.10.3)
|
94
105
|
safe_yaml (1.0.5)
|
106
|
+
strings (0.2.1)
|
107
|
+
strings-ansi (~> 0.2)
|
108
|
+
unicode-display_width (>= 1.5, < 3.0)
|
109
|
+
unicode_utils (~> 1.4)
|
95
110
|
strings-ansi (0.2.0)
|
96
111
|
sys-uname (1.2.2)
|
97
112
|
ffi (~> 1.1)
|
@@ -101,8 +116,16 @@ GEM
|
|
101
116
|
thor (1.1.0)
|
102
117
|
thread_safe (0.3.6)
|
103
118
|
tilt (2.0.10)
|
119
|
+
tty-color (0.6.0)
|
104
120
|
tty-cursor (0.7.1)
|
105
121
|
tty-link (0.1.1)
|
122
|
+
tty-markdown (0.7.0)
|
123
|
+
kramdown (>= 1.16.2, < 3.0)
|
124
|
+
pastel (~> 0.8)
|
125
|
+
rouge (~> 3.14)
|
126
|
+
strings (~> 0.2.0)
|
127
|
+
tty-color (~> 0.5)
|
128
|
+
tty-screen (~> 0.8)
|
106
129
|
tty-progressbar (0.18.2)
|
107
130
|
strings-ansi (~> 0.2)
|
108
131
|
tty-cursor (~> 0.7)
|
@@ -115,6 +138,7 @@ GEM
|
|
115
138
|
tzinfo (2.0.4)
|
116
139
|
concurrent-ruby (~> 1.0)
|
117
140
|
unicode-display_width (2.1.0)
|
141
|
+
unicode_utils (1.4.0)
|
118
142
|
yard (0.9.26)
|
119
143
|
zeitwerk (2.5.1)
|
120
144
|
|
data/README.md
CHANGED
@@ -6,10 +6,14 @@ _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.1.
|
9
|
+
The current version of `doing` is <!--VER-->2.1.5<!--END VER-->.
|
10
10
|
|
11
11
|
Find all of the documentation in the [doing wiki](https://github.com/ttscoff/doing/wiki).
|
12
12
|
|
13
|
+
See [what's new in Doing 2.0](https://brettterpstra.com/2021/11/20/doing-2-dot-0/).
|
14
|
+
|
15
|
+
Check out some craziness with Doing in the [iTerm status bar](https://brettterpstra.com/2021/10/15/see-what-youre-doing-in-the-iterm-status-bar/) and the [Mac Touch Bar/menu bar](https://brettterpstra.com/2021/07/21/crazy-bettertouchtool-touch-bar-simulator/).
|
16
|
+
|
13
17
|
## What and why
|
14
18
|
|
15
19
|
`doing` is a basic CLI for adding and listing "what was I doing" reminders in a [TaskPaper-formatted](https://www.taskpaper.com) text file. It allows for multiple sections/categories and flexible output formatting.
|
data/Rakefile
CHANGED
@@ -15,6 +15,8 @@ YARD::Rake::YardocTask.new do |t|
|
|
15
15
|
# t.stats_options = ['--list-undoc']
|
16
16
|
end
|
17
17
|
|
18
|
+
task :doc, [*Rake.application[:yard].arg_names] => [:yard]
|
19
|
+
|
18
20
|
Rake::RDocTask.new do |rd|
|
19
21
|
rd.main = 'README.md'
|
20
22
|
rd.rdoc_files.include('README.md', 'lib/**/*.rb', 'bin/**/*')
|