diff --git a/CHANGELOG.md b/CHANGELOG.md
index 21b46d08..87bbde4d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+### 2.1.81
+
+2023-05-31 11:47
+
+#### IMPROVED
+
+- Most commands that allow --section can now take multiple values, either by using --section multiple times or providing a comma separated list of sections to the flag
+
### 2.1.80
2023-03-11 10:50
diff --git a/Gemfile.lock b/Gemfile.lock
index 563968c9..5d68b93f 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- doing (2.1.80)
+ doing (2.1.81)
chronic (~> 0.10, >= 0.10.2)
deep_merge (~> 1.2, >= 1.2.1)
gli (~> 2.20, >= 2.20.1)
@@ -21,43 +21,43 @@ GEM
specs:
chronic (0.10.2)
deep_merge (1.2.2)
- github-markup (4.0.0)
+ github-markup (4.0.1)
gli (2.21.0)
haml (5.0.4)
temple (>= 0.8.0)
tilt
kramdown (2.4.0)
rexml
- parallel (1.21.0)
- parallel_tests (3.7.3)
+ parallel (1.23.0)
+ parallel_tests (3.13.0)
parallel
parslet (2.0.0)
pastel (0.8.0)
tty-color (~> 0.5)
- plist (3.6.0)
- power_assert (2.0.1)
+ plist (3.7.0)
+ power_assert (2.0.3)
rake (13.0.6)
rdoc (6.3.3)
- redcarpet (3.5.1)
+ redcarpet (3.6.0)
rexml (3.2.5)
- rouge (3.30.0)
+ rouge (4.1.0)
safe_yaml (1.0.5)
strings (0.2.1)
strings-ansi (~> 0.2)
unicode-display_width (>= 1.5, < 3.0)
unicode_utils (~> 1.4)
strings-ansi (0.2.0)
- temple (0.9.1)
+ temple (0.10.0)
test-unit (3.4.9)
power_assert
- tilt (2.0.11)
+ tilt (2.1.0)
tty-color (0.6.0)
tty-cursor (0.7.1)
tty-link (0.1.1)
- tty-markdown (0.7.1)
+ tty-markdown (0.7.2)
kramdown (>= 1.16.2, < 3.0)
pastel (~> 0.8)
- rouge (~> 3.14)
+ rouge (>= 3.14, < 5.0)
strings (~> 0.2.0)
tty-color (~> 0.5)
tty-screen (~> 0.8)
@@ -76,10 +76,8 @@ GEM
tty-which (0.5.0)
unicode-display_width (2.4.2)
unicode_utils (1.4.0)
- webrick (1.7.0)
wisper (2.0.1)
- yard (0.9.27)
- webrick (~> 1.7.0)
+ yard (0.9.34)
PLATFORMS
ruby
diff --git a/README.md b/README.md
index 9845f508..df5b12c8 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ _If you're one of the rare people like me who find this useful, feel free to
-The current version of `doing` is 2.1.79.
+The current version of `doing` is 2.1.80.
Find all of the documentation in the [doing wiki][wiki].
diff --git a/bin/commands/again.rb b/bin/commands/again.rb
index 8ff1c7e9..5851f47c 100644
--- a/bin/commands/again.rb
+++ b/bin/commands/again.rb
@@ -17,7 +17,7 @@
c.desc 'Get last entry from a specific section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
c.desc 'Add new entry to section (default: same section as repeated entry)'
c.arg_name 'SECTION_NAME'
diff --git a/bin/commands/archive.rb b/bin/commands/archive.rb
index 87af74c5..fbae68fa 100644
--- a/bin/commands/archive.rb
+++ b/bin/commands/archive.rb
@@ -39,7 +39,7 @@
elsif args[0] =~ /^@\S+/
['all', args.tags_to_array]
else
- [args.shift.cap_first, args.tags_to_array]
+ [@wwid.guess_section(args.shift.cap_first), args.tags_to_array]
end
raise InvalidArgument, '--keep and --count can not be used together' if options[:keep] && options[:count]
diff --git a/bin/commands/cancel.rb b/bin/commands/cancel.rb
index 6aaf9aae..a4862bfb 100644
--- a/bin/commands/cancel.rb
+++ b/bin/commands/cancel.rb
@@ -14,7 +14,7 @@
c.desc 'Section'
c.arg_name 'NAME'
- c.flag %i[s section]
+ c.flag %i[s section], multiple: true
c.desc 'Cancel last entry (or entries) not already marked @done'
c.switch %i[u unfinished], negatable: false, default_value: false
diff --git a/bin/commands/finish.rb b/bin/commands/finish.rb
index 2cd876eb..1b1cb2dd 100644
--- a/bin/commands/finish.rb
+++ b/bin/commands/finish.rb
@@ -41,7 +41,7 @@ def add_options(cmd)
cmd.desc 'Section'
cmd.arg_name 'NAME'
- cmd.flag %i[s section]
+ cmd.flag %i[s section], multiple: true
cmd.desc 'Select item(s) to finish from a menu of matching entries'
cmd.switch %i[i interactive], negatable: false, default_value: false
diff --git a/bin/commands/flag.rb b/bin/commands/flag.rb
index 40e3a983..4a11b36e 100644
--- a/bin/commands/flag.rb
+++ b/bin/commands/flag.rb
@@ -12,7 +12,7 @@
c.desc 'Section'
c.arg_name 'SECTION_NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
c.desc 'How many recent entries to tag (0 for all)'
c.arg_name 'COUNT'
diff --git a/bin/commands/grep.rb b/bin/commands/grep.rb
index 3871ed01..a8b22a0a 100644
--- a/bin/commands/grep.rb
+++ b/bin/commands/grep.rb
@@ -1,7 +1,7 @@
# @@grep @@search
desc 'Search for entries'
long_desc %(
-Search all sections (or limit to a single section) for entries matching text or regular expression. Normal strings are fuzzy matched.
+Search all sections (or limit to a specific sections) for entries matching text or regular expression. Normal strings are fuzzy matched.
To search with regular expressions, single quote the string and surround with slashes: `doing search '/\bm.*?x\b/'`
)
@@ -11,10 +11,11 @@
c.example 'doing search "\'search command"', desc: 'Find entries containing "search command" using exact matching (search is an alias for grep)'
c.example 'doing grep "/do.*?wiki.*?@done/"', desc: 'Find entries matching regular expression'
c.example 'doing search --before 12/21 "doing wiki"', desc: 'Find entries containing "doing wiki" with entry dates before 12/21 of the current year'
+ c.example 'doing grep @project1 -s currently -s projects', desc: 'Search only in Currently and Projects'
c.desc 'Section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
# c.desc '[DEPRECATED] Use alternative fuzzy matching for search string'
# c.switch [:fuzzy], default_value: false, negatable: false
diff --git a/bin/commands/last.rb b/bin/commands/last.rb
index d05cd88e..d38c87f7 100644
--- a/bin/commands/last.rb
+++ b/bin/commands/last.rb
@@ -13,7 +13,7 @@
c.desc 'Specify a section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
c.desc "Edit entry with #{Doing::Util.default_editor}"
c.switch %i[e editor], negatable: false, default_value: false
diff --git a/bin/commands/note.rb b/bin/commands/note.rb
index 9964cbd9..d15967d6 100644
--- a/bin/commands/note.rb
+++ b/bin/commands/note.rb
@@ -16,7 +16,7 @@
c.desc 'Section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
c.desc "Edit entry with #{Doing::Util.default_editor}"
c.switch %i[e editor], negatable: false, default_value: false
diff --git a/bin/commands/on.rb b/bin/commands/on.rb
index a56f2eb5..e4fde802 100644
--- a/bin/commands/on.rb
+++ b/bin/commands/on.rb
@@ -13,7 +13,7 @@
c.desc 'Section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
add_options(:output_template, c)
add_options(:time_display, c)
diff --git a/bin/commands/recent.rb b/bin/commands/recent.rb
index 784cac06..a064389b 100644
--- a/bin/commands/recent.rb
+++ b/bin/commands/recent.rb
@@ -11,7 +11,7 @@
c.desc 'Section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
c.desc 'Select from a menu of matching entries to perform additional operations'
c.switch %i[i interactive], negatable: false, default_value: false
diff --git a/bin/commands/reset.rb b/bin/commands/reset.rb
index 84e81d73..60450753 100644
--- a/bin/commands/reset.rb
+++ b/bin/commands/reset.rb
@@ -12,7 +12,7 @@
c.desc 'Limit search to section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
c.desc 'Resume entry (remove @done)'
c.switch %i[r resume], default_value: true
diff --git a/bin/commands/select.rb b/bin/commands/select.rb
index 348daf3a..db2db7bd 100644
--- a/bin/commands/select.rb
+++ b/bin/commands/select.rb
@@ -23,7 +23,7 @@
c.desc 'Select from a specific section'
c.arg_name 'SECTION'
- c.flag %i[s section]
+ c.flag %i[s section], multiple: true
c.desc 'Tag selected entries'
c.arg_name 'TAG'
diff --git a/bin/commands/show.rb b/bin/commands/show.rb
index 6d99cf28..d4b2db96 100644
--- a/bin/commands/show.rb
+++ b/bin/commands/show.rb
@@ -38,7 +38,7 @@
c.desc 'Only show entries within section'
c.arg_name 'NAME'
- c.flag %i[s section]
+ c.flag %i[s section], multiple: true
c.desc 'Select section or tag to display from a menu'
c.switch %i[m menu], negatable: false, default_value: false
@@ -75,7 +75,8 @@
when /^[@+-]/
section = options[:section] ? @wwid.guess_section(options[:section]) : 'All'
else
- sect = options[:section] ? options[:section] : args[0]
+ sect = options[:section].empty? ? args[0] : options[:section]
+
begin
section = @wwid.guess_section(sect)
rescue WrongCommand
@@ -88,6 +89,7 @@
args.shift
end
+
if args.length.positive?
args.each do |arg|
arg.split(/,/).each do |tag|
@@ -96,7 +98,7 @@
end
end
else
- if options[:section]
+ if options[:section] && !options[:section].empty?
section = @wwid.guess_section(options[:section]) || 'All'
else
section = options[:menu] ? @wwid.choose_section(include_all: true) : Doing.setting('current_section')
diff --git a/bin/commands/since.rb b/bin/commands/since.rb
index 493762b1..bd8241e7 100644
--- a/bin/commands/since.rb
+++ b/bin/commands/since.rb
@@ -9,7 +9,7 @@
c.desc 'Section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
add_options(:output_template, c)
add_options(:time_display, c)
diff --git a/bin/commands/tag.rb b/bin/commands/tag.rb
index 68a5ec0b..436e2dc4 100644
--- a/bin/commands/tag.rb
+++ b/bin/commands/tag.rb
@@ -23,7 +23,7 @@
c.desc 'Section'
c.arg_name 'SECTION_NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
c.desc 'How many recent entries to tag (0 for all)'
c.arg_name 'COUNT'
@@ -73,25 +73,18 @@
section = @wwid.guess_section(options[:section]) || options[:section].cap_first
end
-
- if options[:tag].nil?
- search_tags = []
- else
- search_tags = options[:tag]
- end
+ search_tags = options[:tag].nil? ? [] : options[:tag]
if options[:autotag]
tags = []
else
- if args.empty?
- tags = []
- else
- tags = if args.join('') =~ /,/
- args.join('').split(/ *, */)
- else
- args.join(' ').split(' ') # in case tags are quoted as one arg
- end
- end
+ tags = if args.empty?
+ []
+ elsif args.join('') =~ /,/
+ args.join('').split(/ *, */)
+ else
+ args.join(' ').split(' ') # in case tags are quoted as one arg
+ end
tags.map! { |tag| tag.sub(/^@/, '').strip }
end
diff --git a/bin/commands/tags.rb b/bin/commands/tags.rb
index 23e51b70..982bd33f 100644
--- a/bin/commands/tags.rb
+++ b/bin/commands/tags.rb
@@ -4,7 +4,7 @@
command :tags do |c|
c.desc 'Section'
c.arg_name 'SECTION_NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
c.desc 'Show count of occurrences'
c.switch %i[c counts]
diff --git a/bin/commands/today.rb b/bin/commands/today.rb
index d0992ce3..9f07fe97 100644
--- a/bin/commands/today.rb
+++ b/bin/commands/today.rb
@@ -10,7 +10,7 @@
c.desc 'Specify a section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
add_options(:output_template, c, default_template: 'today')
add_options(:time_filter, c)
diff --git a/bin/commands/view.rb b/bin/commands/view.rb
index 30f4e15d..f3ac2f39 100644
--- a/bin/commands/view.rb
+++ b/bin/commands/view.rb
@@ -9,7 +9,7 @@
c.desc 'Section'
c.arg_name 'NAME'
- c.flag %i[s section]
+ c.flag %i[s section], multiple: true
c.desc 'Count to display'
c.arg_name 'COUNT'
diff --git a/bin/commands/views.rb b/bin/commands/views.rb
index f5dc45ab..bb05b351 100644
--- a/bin/commands/views.rb
+++ b/bin/commands/views.rb
@@ -82,7 +82,7 @@ def edit_views
res = if @options[:output] =~ /^j/i
JSON.parse(@wwid.fork_editor(JSON.pretty_generate(@views), message: nil))
else
- YAML.safe_load(@wwid.fork_editor(YAML.dump(@views), message: nil))
+ Doing::Util.safe_load_file(@wwid.fork_editor(YAML.dump(@views), message: nil))
end
@args.each do |v|
save_view(v, res)
diff --git a/bin/commands/yesterday.rb b/bin/commands/yesterday.rb
index 4b9a656a..1576edf9 100644
--- a/bin/commands/yesterday.rb
+++ b/bin/commands/yesterday.rb
@@ -9,7 +9,7 @@
c.desc 'Specify a section'
c.arg_name 'NAME'
- c.flag %i[s section], default_value: 'All'
+ c.flag %i[s section], default_value: 'All', multiple: true
add_options(:output_template, c, default_template: 'today')
add_options(:time_filter, c)
diff --git a/docs/doc/Array.html b/docs/doc/Array.html
index 159e61d1..50cd2b1c 100644
--- a/docs/doc/Array.html
+++ b/docs/doc/Array.html
@@ -6,7 +6,7 @@
Class: Array
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -138,6 +138,29 @@
+ #cap_first ⇒ Array
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Capitalize first letter of each element.
+
+
+
+
+
+
+
+
#good? ⇒ Boolean
@@ -205,7 +228,46 @@ Instance Method Details
-
+
+
+ #cap_first ⇒ Array
+
+
+
+
+
+
+
+
Capitalize first letter of each element
+
+
+
+
+
+
+
+
+
#good? ⇒ Boolean
@@ -288,9 +350,9 @@
diff --git a/docs/doc/BooleanTermParser.html b/docs/doc/BooleanTermParser.html
index 932cc899..6baaca4d 100644
--- a/docs/doc/BooleanTermParser.html
+++ b/docs/doc/BooleanTermParser.html
@@ -6,7 +6,7 @@
Module: BooleanTermParser
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -105,9 +105,9 @@ Defined Under Namespace
diff --git a/docs/doc/BooleanTermParser/Clause.html b/docs/doc/BooleanTermParser/Clause.html
index d3be4bd0..36ea770a 100644
--- a/docs/doc/BooleanTermParser/Clause.html
+++ b/docs/doc/BooleanTermParser/Clause.html
@@ -6,7 +6,7 @@
Class: BooleanTermParser::Clause
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -283,9 +283,9 @@
diff --git a/docs/doc/BooleanTermParser/Operator.html b/docs/doc/BooleanTermParser/Operator.html
index 5a4b854e..3e1b38da 100644
--- a/docs/doc/BooleanTermParser/Operator.html
+++ b/docs/doc/BooleanTermParser/Operator.html
@@ -6,7 +6,7 @@
Class: BooleanTermParser::Operator
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -162,9 +162,9 @@
diff --git a/docs/doc/BooleanTermParser/Query.html b/docs/doc/BooleanTermParser/Query.html
index a3d19ddb..1444003e 100644
--- a/docs/doc/BooleanTermParser/Query.html
+++ b/docs/doc/BooleanTermParser/Query.html
@@ -6,7 +6,7 @@
Class: BooleanTermParser::Query
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -407,9 +407,9 @@
diff --git a/docs/doc/BooleanTermParser/QueryParser.html b/docs/doc/BooleanTermParser/QueryParser.html
index 51e4e8a3..5e14bcc7 100644
--- a/docs/doc/BooleanTermParser/QueryParser.html
+++ b/docs/doc/BooleanTermParser/QueryParser.html
@@ -6,7 +6,7 @@
Class: BooleanTermParser::QueryParser
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -125,9 +125,9 @@ Overview
diff --git a/docs/doc/BooleanTermParser/QueryTransformer.html b/docs/doc/BooleanTermParser/QueryTransformer.html
index 666519d8..94d3b9be 100644
--- a/docs/doc/BooleanTermParser/QueryTransformer.html
+++ b/docs/doc/BooleanTermParser/QueryTransformer.html
@@ -6,7 +6,7 @@
Class: BooleanTermParser::QueryTransformer
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -114,9 +114,9 @@
diff --git a/docs/doc/Doing.html b/docs/doc/Doing.html
index 0fa6b5c6..3f59e37d 100644
--- a/docs/doc/Doing.html
+++ b/docs/doc/Doing.html
@@ -6,7 +6,7 @@
Module: Doing
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -122,7 +122,7 @@
VERSION =
- '2.1.80'
+ '2.1.81'
@@ -138,9 +138,9 @@
diff --git a/docs/doc/Doing/ArrayCleanup.html b/docs/doc/Doing/ArrayCleanup.html
index 37668970..66ff0aea 100644
--- a/docs/doc/Doing/ArrayCleanup.html
+++ b/docs/doc/Doing/ArrayCleanup.html
@@ -6,7 +6,7 @@
Module: Doing::ArrayCleanup
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -306,9 +306,9 @@
diff --git a/docs/doc/Doing/ArrayNestedHash.html b/docs/doc/Doing/ArrayNestedHash.html
index c4807f6b..dfc9011c 100644
--- a/docs/doc/Doing/ArrayNestedHash.html
+++ b/docs/doc/Doing/ArrayNestedHash.html
@@ -6,7 +6,7 @@
Module: Doing::ArrayNestedHash
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -188,9 +188,9 @@
diff --git a/docs/doc/Doing/ArrayTags.html b/docs/doc/Doing/ArrayTags.html
index 4b24c1b5..47916dde 100644
--- a/docs/doc/Doing/ArrayTags.html
+++ b/docs/doc/Doing/ArrayTags.html
@@ -6,7 +6,7 @@
Module: Doing::ArrayTags
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -414,9 +414,9 @@
Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::COLORED_REGEXP, Color::ESCAPE_REGEX
+ Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::ESCAPE_REGEX
Instance Attribute Summary collapse
@@ -991,9 +991,9 @@
diff --git a/docs/doc/Doing/ItemDates.html b/docs/doc/Doing/ItemDates.html
index 9a780cbf..e1d184bc 100644
--- a/docs/doc/Doing/ItemDates.html
+++ b/docs/doc/Doing/ItemDates.html
@@ -6,7 +6,7 @@
Module: Doing::ItemDates
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -554,9 +554,9 @@
diff --git a/docs/doc/Doing/ItemQuery.html b/docs/doc/Doing/ItemQuery.html
index 7bf3cd2a..160588e0 100644
--- a/docs/doc/Doing/ItemQuery.html
+++ b/docs/doc/Doing/ItemQuery.html
@@ -6,7 +6,7 @@
Module: Doing::ItemQuery
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -685,9 +685,9 @@
diff --git a/docs/doc/Doing/ItemState.html b/docs/doc/Doing/ItemState.html
index 747184b2..9ed397d9 100644
--- a/docs/doc/Doing/ItemState.html
+++ b/docs/doc/Doing/ItemState.html
@@ -6,7 +6,7 @@
Module: Doing::ItemState
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -377,9 +377,9 @@
diff --git a/docs/doc/Doing/ItemTags.html b/docs/doc/Doing/ItemTags.html
index ea03cb28..b4d7dc9d 100644
--- a/docs/doc/Doing/ItemTags.html
+++ b/docs/doc/Doing/ItemTags.html
@@ -6,7 +6,7 @@
Module: Doing::ItemTags
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -488,9 +488,9 @@
diff --git a/docs/doc/Doing/Items.html b/docs/doc/Doing/Items.html
index 432580f5..f2e29a56 100644
--- a/docs/doc/Doing/Items.html
+++ b/docs/doc/Doing/Items.html
@@ -6,7 +6,7 @@
Class: Doing::Items
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -655,7 +655,7 @@
Methods inherited from Array
-
#good?, #utf8
+ #cap_first, #good?, #utf8
@@ -1792,9 +1792,9 @@
diff --git a/docs/doc/Doing/JSONExport.html b/docs/doc/Doing/JSONExport.html
index 95847082..7df11cc6 100644
--- a/docs/doc/Doing/JSONExport.html
+++ b/docs/doc/Doing/JSONExport.html
@@ -6,7 +6,7 @@
Class: Doing::JSONExport
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -212,9 +212,9 @@
diff --git a/docs/doc/Doing/JSONImport.html b/docs/doc/Doing/JSONImport.html
index eb5ed227..0ad6c838 100644
--- a/docs/doc/Doing/JSONImport.html
+++ b/docs/doc/Doing/JSONImport.html
@@ -6,7 +6,7 @@
Class: Doing::JSONImport
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -285,9 +285,9 @@
diff --git a/docs/doc/Doing/Logger.html b/docs/doc/Doing/Logger.html
index 725e5983..9b3be1a1 100644
--- a/docs/doc/Doing/Logger.html
+++ b/docs/doc/Doing/Logger.html
@@ -6,7 +6,7 @@
Class: Doing::Logger
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -1797,9 +1797,9 @@
diff --git a/docs/doc/Doing/MarkdownExport.html b/docs/doc/Doing/MarkdownExport.html
index 592080d1..3505e95d 100644
--- a/docs/doc/Doing/MarkdownExport.html
+++ b/docs/doc/Doing/MarkdownExport.html
@@ -6,7 +6,7 @@
Class: Doing::MarkdownExport
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -256,9 +256,9 @@
diff --git a/docs/doc/Doing/Note.html b/docs/doc/Doing/Note.html
index 5a918b58..6967f550 100644
--- a/docs/doc/Doing/Note.html
+++ b/docs/doc/Doing/Note.html
@@ -6,7 +6,7 @@
Class: Doing::Note
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -346,7 +346,7 @@
Methods inherited from Array
-
#good?, #utf8
+ #cap_first, #good?, #utf8
@@ -747,9 +747,9 @@
diff --git a/docs/doc/Doing/Pager.html b/docs/doc/Doing/Pager.html
index 6a491479..8eca7bb7 100644
--- a/docs/doc/Doing/Pager.html
+++ b/docs/doc/Doing/Pager.html
@@ -6,7 +6,7 @@
Module: Doing::Pager
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -296,9 +296,9 @@
diff --git a/docs/doc/Doing/Plugins.html b/docs/doc/Doing/Plugins.html
index 5dcbb398..fe4db209 100644
--- a/docs/doc/Doing/Plugins.html
+++ b/docs/doc/Doing/Plugins.html
@@ -6,7 +6,7 @@
Module: Doing::Plugins
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -1340,9 +1340,9 @@
diff --git a/docs/doc/Doing/Prompt.html b/docs/doc/Doing/Prompt.html
index 05ecfd53..4f7f0e28 100644
--- a/docs/doc/Doing/Prompt.html
+++ b/docs/doc/Doing/Prompt.html
@@ -6,7 +6,7 @@
Module: Doing::Prompt
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -105,7 +105,7 @@ Constant Summary
Constants included
from Color
-
Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::COLORED_REGEXP, Color::ESCAPE_REGEX
+ Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::ESCAPE_REGEX
Class Attribute Summary collapse
@@ -326,9 +326,9 @@
diff --git a/docs/doc/Doing/PromptChoose.html b/docs/doc/Doing/PromptChoose.html
index 9f6051ce..8cae4474 100644
--- a/docs/doc/Doing/PromptChoose.html
+++ b/docs/doc/Doing/PromptChoose.html
@@ -6,7 +6,7 @@
Module: Doing::PromptChoose
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -474,9 +474,9 @@
diff --git a/docs/doc/Doing/PromptFZF.html b/docs/doc/Doing/PromptFZF.html
index ed494fb2..0601299b 100644
--- a/docs/doc/Doing/PromptFZF.html
+++ b/docs/doc/Doing/PromptFZF.html
@@ -6,7 +6,7 @@
Module: Doing::PromptFZF
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -381,9 +381,9 @@
diff --git a/docs/doc/Doing/PromptInput.html b/docs/doc/Doing/PromptInput.html
index c3ac8c4b..4fd39ac5 100644
--- a/docs/doc/Doing/PromptInput.html
+++ b/docs/doc/Doing/PromptInput.html
@@ -6,7 +6,7 @@
Module: Doing::PromptInput
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -562,9 +562,9 @@
diff --git a/docs/doc/Doing/PromptSTD.html b/docs/doc/Doing/PromptSTD.html
index bd70ea65..c3cf68de 100644
--- a/docs/doc/Doing/PromptSTD.html
+++ b/docs/doc/Doing/PromptSTD.html
@@ -6,7 +6,7 @@
Module: Doing::PromptSTD
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -283,9 +283,9 @@
diff --git a/docs/doc/Doing/PromptYN.html b/docs/doc/Doing/PromptYN.html
index 514f9e40..b899548a 100644
--- a/docs/doc/Doing/PromptYN.html
+++ b/docs/doc/Doing/PromptYN.html
@@ -6,7 +6,7 @@
Module: Doing::PromptYN
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -227,9 +227,9 @@
diff --git a/docs/doc/Doing/Section.html b/docs/doc/Doing/Section.html
index cd4ba516..e8c146c0 100644
--- a/docs/doc/Doing/Section.html
+++ b/docs/doc/Doing/Section.html
@@ -6,7 +6,7 @@
Class: Doing::Section
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -400,9 +400,9 @@
diff --git a/docs/doc/Doing/StringHighlight.html b/docs/doc/Doing/StringHighlight.html
index 56a19b2d..62cd8a0e 100644
--- a/docs/doc/Doing/StringHighlight.html
+++ b/docs/doc/Doing/StringHighlight.html
@@ -6,7 +6,7 @@
Module: Doing::StringHighlight
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -523,9 +523,9 @@
diff --git a/docs/doc/Doing/StringNormalize.html b/docs/doc/Doing/StringNormalize.html
index 3a506893..a51d4f66 100644
--- a/docs/doc/Doing/StringNormalize.html
+++ b/docs/doc/Doing/StringNormalize.html
@@ -6,7 +6,7 @@
Module: Doing::StringNormalize
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -1036,9 +1036,9 @@
diff --git a/docs/doc/Doing/StringQuery.html b/docs/doc/Doing/StringQuery.html
index cce5032c..13fb6360 100644
--- a/docs/doc/Doing/StringQuery.html
+++ b/docs/doc/Doing/StringQuery.html
@@ -6,7 +6,7 @@
Module: Doing::StringQuery
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -771,9 +771,9 @@
diff --git a/docs/doc/Doing/StringTags.html b/docs/doc/Doing/StringTags.html
index 93a2e754..e56549c1 100644
--- a/docs/doc/Doing/StringTags.html
+++ b/docs/doc/Doing/StringTags.html
@@ -6,7 +6,7 @@
Module: Doing::StringTags
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -874,9 +874,9 @@
diff --git a/docs/doc/Doing/StringTransform.html b/docs/doc/Doing/StringTransform.html
index 2b207950..1ba8a594 100644
--- a/docs/doc/Doing/StringTransform.html
+++ b/docs/doc/Doing/StringTransform.html
@@ -6,7 +6,7 @@
Module: Doing::StringTransform
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -589,9 +589,9 @@
diff --git a/docs/doc/Doing/StringTruncate.html b/docs/doc/Doing/StringTruncate.html
index ca61cb89..c7e8b4f2 100644
--- a/docs/doc/Doing/StringTruncate.html
+++ b/docs/doc/Doing/StringTruncate.html
@@ -6,7 +6,7 @@
Module: Doing::StringTruncate
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -438,9 +438,9 @@
diff --git a/docs/doc/Doing/StringURL.html b/docs/doc/Doing/StringURL.html
index 73721f36..39e9fd01 100644
--- a/docs/doc/Doing/StringURL.html
+++ b/docs/doc/Doing/StringURL.html
@@ -6,7 +6,7 @@
Module: Doing::StringURL
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -399,9 +399,9 @@
diff --git a/docs/doc/Doing/SymbolNormalize.html b/docs/doc/Doing/SymbolNormalize.html
index 85683a3a..a9d7857f 100644
--- a/docs/doc/Doing/SymbolNormalize.html
+++ b/docs/doc/Doing/SymbolNormalize.html
@@ -6,7 +6,7 @@
Module: Doing::SymbolNormalize
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -331,9 +331,9 @@
diff --git a/docs/doc/Doing/TaskPaperExport.html b/docs/doc/Doing/TaskPaperExport.html
index 0176a15b..21b2f160 100644
--- a/docs/doc/Doing/TaskPaperExport.html
+++ b/docs/doc/Doing/TaskPaperExport.html
@@ -6,7 +6,7 @@
Class: Doing::TaskPaperExport
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -212,9 +212,9 @@
diff --git a/docs/doc/Doing/TemplateExport.html b/docs/doc/Doing/TemplateExport.html
index e929c321..417a0dad 100644
--- a/docs/doc/Doing/TemplateExport.html
+++ b/docs/doc/Doing/TemplateExport.html
@@ -6,7 +6,7 @@
Class: Doing::TemplateExport
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -121,7 +121,7 @@ Constant Summary
Constants included
from Color
-
Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::COLORED_REGEXP, Color::ESCAPE_REGEX
+ Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::ESCAPE_REGEX
@@ -239,9 +239,9 @@
diff --git a/docs/doc/Doing/TemplateString.html b/docs/doc/Doing/TemplateString.html
index 618daf55..4e6e6859 100644
--- a/docs/doc/Doing/TemplateString.html
+++ b/docs/doc/Doing/TemplateString.html
@@ -6,7 +6,7 @@
Class: Doing::TemplateString
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -123,7 +123,7 @@ Constant Summary
Constants included
from Color
-
Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::COLORED_REGEXP, Color::ESCAPE_REGEX
+ Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::ESCAPE_REGEX
Instance Attribute Summary collapse
@@ -802,9 +802,9 @@
diff --git a/docs/doc/Doing/TimingImport.html b/docs/doc/Doing/TimingImport.html
index 6070d44a..73054644 100644
--- a/docs/doc/Doing/TimingImport.html
+++ b/docs/doc/Doing/TimingImport.html
@@ -6,7 +6,7 @@
Class: Doing::TimingImport
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -275,9 +275,9 @@
diff --git a/docs/doc/Doing/Types.html b/docs/doc/Doing/Types.html
index 210732c5..87b21cfe 100644
--- a/docs/doc/Doing/Types.html
+++ b/docs/doc/Doing/Types.html
@@ -6,7 +6,7 @@
Module: Doing::Types
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -241,9 +241,9 @@
diff --git a/docs/doc/Doing/Util.html b/docs/doc/Doing/Util.html
index b44f125b..54f41464 100644
--- a/docs/doc/Doing/Util.html
+++ b/docs/doc/Doing/Util.html
@@ -6,7 +6,7 @@
Module: Doing::Util
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -982,9 +982,9 @@
diff --git a/docs/doc/Doing/Util/Backup.html b/docs/doc/Doing/Util/Backup.html
index 0aa27c44..96b17530 100644
--- a/docs/doc/Doing/Util/Backup.html
+++ b/docs/doc/Doing/Util/Backup.html
@@ -6,7 +6,7 @@
Module: Doing::Util::Backup
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -684,9 +684,9 @@
diff --git a/docs/doc/Doing/Version.html b/docs/doc/Doing/Version.html
index 52439bbf..c11c8084 100644
--- a/docs/doc/Doing/Version.html
+++ b/docs/doc/Doing/Version.html
@@ -6,7 +6,7 @@
Class: Doing::Version
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -513,9 +513,9 @@
diff --git a/docs/doc/Doing/WWID.html b/docs/doc/Doing/WWID.html
index 1ac84886..c93505ed 100644
--- a/docs/doc/Doing/WWID.html
+++ b/docs/doc/Doing/WWID.html
@@ -6,7 +6,7 @@
Class: Doing::WWID
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -123,7 +123,7 @@ Constant Summary
Constants included
from Color
-
Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::COLORED_REGEXP, Color::ESCAPE_REGEX
+ Color::ATTRIBUTES, Color::ATTRIBUTE_NAMES, Color::ESCAPE_REGEX
Instance Attribute Summary collapse
@@ -5155,9 +5155,9 @@
diff --git a/docs/doc/FalseClass.html b/docs/doc/FalseClass.html
index d0f899fb..c49c2416 100644
--- a/docs/doc/FalseClass.html
+++ b/docs/doc/FalseClass.html
@@ -6,7 +6,7 @@
Class: FalseClass
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -235,9 +235,9 @@
diff --git a/docs/doc/GLI.html b/docs/doc/GLI.html
index 3ffbe657..3f9aa5ca 100644
--- a/docs/doc/GLI.html
+++ b/docs/doc/GLI.html
@@ -6,7 +6,7 @@
Module: GLI
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -107,9 +107,9 @@ Defined Under Namespace
diff --git a/docs/doc/GLI/Commands.html b/docs/doc/GLI/Commands.html
index ef731dfb..e5faa252 100644
--- a/docs/doc/GLI/Commands.html
+++ b/docs/doc/GLI/Commands.html
@@ -6,7 +6,7 @@
Module: GLI::Commands
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -107,9 +107,9 @@ Defined Under Namespace
diff --git a/docs/doc/GLI/Commands/Help.html b/docs/doc/GLI/Commands/Help.html
index a617b9a6..325be96f 100644
--- a/docs/doc/GLI/Commands/Help.html
+++ b/docs/doc/GLI/Commands/Help.html
@@ -6,7 +6,7 @@
Class: GLI::Commands::Help
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -175,9 +175,9 @@
diff --git a/docs/doc/GLI/Commands/MarkdownDocumentListener.html b/docs/doc/GLI/Commands/MarkdownDocumentListener.html
index 814a756b..d158ddc5 100644
--- a/docs/doc/GLI/Commands/MarkdownDocumentListener.html
+++ b/docs/doc/GLI/Commands/MarkdownDocumentListener.html
@@ -6,7 +6,7 @@
Class: GLI::Commands::MarkdownDocumentListener
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -753,9 +753,9 @@
diff --git a/docs/doc/Hash.html b/docs/doc/Hash.html
index eb721fab..1045917e 100644
--- a/docs/doc/Hash.html
+++ b/docs/doc/Hash.html
@@ -6,7 +6,7 @@
Class: Hash
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -1000,9 +1000,9 @@
diff --git a/docs/doc/Numeric.html b/docs/doc/Numeric.html
index 91b8eff1..2f520f29 100644
--- a/docs/doc/Numeric.html
+++ b/docs/doc/Numeric.html
@@ -6,7 +6,7 @@
Class: Numeric
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -214,9 +214,9 @@
diff --git a/docs/doc/Object.html b/docs/doc/Object.html
index eb9d811c..1dcaead8 100644
--- a/docs/doc/Object.html
+++ b/docs/doc/Object.html
@@ -6,7 +6,7 @@
Class: Object
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -193,9 +193,9 @@
diff --git a/docs/doc/PhraseParser.html b/docs/doc/PhraseParser.html
index fe97de55..b2665388 100644
--- a/docs/doc/PhraseParser.html
+++ b/docs/doc/PhraseParser.html
@@ -6,7 +6,7 @@
Module: PhraseParser
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -105,9 +105,9 @@ Defined Under Namespace
diff --git a/docs/doc/PhraseParser/Operator.html b/docs/doc/PhraseParser/Operator.html
index 8d59d597..07f41184 100644
--- a/docs/doc/PhraseParser/Operator.html
+++ b/docs/doc/PhraseParser/Operator.html
@@ -6,7 +6,7 @@
Class: PhraseParser::Operator
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -162,9 +162,9 @@
diff --git a/docs/doc/PhraseParser/PhraseClause.html b/docs/doc/PhraseParser/PhraseClause.html
index 5ee26c9d..c2730673 100644
--- a/docs/doc/PhraseParser/PhraseClause.html
+++ b/docs/doc/PhraseParser/PhraseClause.html
@@ -6,7 +6,7 @@
Class: PhraseParser::PhraseClause
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -293,9 +293,9 @@
diff --git a/docs/doc/PhraseParser/Query.html b/docs/doc/PhraseParser/Query.html
index e2593f76..e76f2a6f 100644
--- a/docs/doc/PhraseParser/Query.html
+++ b/docs/doc/PhraseParser/Query.html
@@ -6,7 +6,7 @@
Class: PhraseParser::Query
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -485,9 +485,9 @@
diff --git a/docs/doc/PhraseParser/QueryParser.html b/docs/doc/PhraseParser/QueryParser.html
index 1ac70ba6..db1004ed 100644
--- a/docs/doc/PhraseParser/QueryParser.html
+++ b/docs/doc/PhraseParser/QueryParser.html
@@ -6,7 +6,7 @@
Class: PhraseParser::QueryParser
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -126,9 +126,9 @@ Overview
diff --git a/docs/doc/PhraseParser/QueryTransformer.html b/docs/doc/PhraseParser/QueryTransformer.html
index 03cbd2b5..4a5939df 100644
--- a/docs/doc/PhraseParser/QueryTransformer.html
+++ b/docs/doc/PhraseParser/QueryTransformer.html
@@ -6,7 +6,7 @@
Class: PhraseParser::QueryTransformer
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -114,9 +114,9 @@
diff --git a/docs/doc/PhraseParser/TermClause.html b/docs/doc/PhraseParser/TermClause.html
index 1f24b943..0048e474 100644
--- a/docs/doc/PhraseParser/TermClause.html
+++ b/docs/doc/PhraseParser/TermClause.html
@@ -6,7 +6,7 @@
Class: PhraseParser::TermClause
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -283,9 +283,9 @@
diff --git a/docs/doc/Status.html b/docs/doc/Status.html
index 15397564..35e117c5 100644
--- a/docs/doc/Status.html
+++ b/docs/doc/Status.html
@@ -6,7 +6,7 @@
Module: Status
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -316,9 +316,9 @@
diff --git a/docs/doc/String.html b/docs/doc/String.html
index 46cfdce3..61d27928 100644
--- a/docs/doc/String.html
+++ b/docs/doc/String.html
@@ -6,7 +6,7 @@
Class: String
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -127,7 +127,7 @@ Constant Summary
Constants included
from Doing::Color
-
Doing::Color::ATTRIBUTES, Doing::Color::ATTRIBUTE_NAMES, Doing::Color::COLORED_REGEXP, Doing::Color::ESCAPE_REGEX
+ Doing::Color::ATTRIBUTES, Doing::Color::ATTRIBUTE_NAMES, Doing::Color::ESCAPE_REGEX
@@ -679,9 +679,9 @@
diff --git a/docs/doc/Symbol.html b/docs/doc/Symbol.html
index 5ca4c160..3dcc2e3a 100644
--- a/docs/doc/Symbol.html
+++ b/docs/doc/Symbol.html
@@ -6,7 +6,7 @@
Class: Symbol
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -127,9 +127,9 @@ Methods included from
- Generated on Sat Mar 11 10:54:31 2023 by
+ Generated on Wed May 31 15:49:42 2023 by
yard
- 0.9.28 (ruby-3.0.1).
+ 0.9.34 (ruby-3.2.0).
diff --git a/docs/doc/Time.html b/docs/doc/Time.html
index 77de9680..fd05e3da 100644
--- a/docs/doc/Time.html
+++ b/docs/doc/Time.html
@@ -6,7 +6,7 @@
Class: Time
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -411,9 +411,9 @@
diff --git a/docs/doc/TrueClass.html b/docs/doc/TrueClass.html
index 9d7c50f0..aebf84b4 100644
--- a/docs/doc/TrueClass.html
+++ b/docs/doc/TrueClass.html
@@ -6,7 +6,7 @@
Class: TrueClass
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -235,9 +235,9 @@
diff --git a/docs/doc/_index.html b/docs/doc/_index.html
index dd5e7866..c2e40fb8 100644
--- a/docs/doc/_index.html
+++ b/docs/doc/_index.html
@@ -4,7 +4,7 @@
- Documentation by YARD 0.9.28
+ Documentation by YARD 0.9.34
@@ -52,7 +52,7 @@
- Documentation by YARD 0.9.28
+
Documentation by YARD 0.9.34
Alphabetic Index
@@ -961,9 +961,9 @@ Namespace Listing A-Z
diff --git a/docs/doc/file.README.html b/docs/doc/file.README.html
index e189dda9..a18c0fdd 100644
--- a/docs/doc/file.README.html
+++ b/docs/doc/file.README.html
@@ -6,7 +6,7 @@
File: README
- — Documentation by YARD 0.9.28
+ — Documentation by YARD 0.9.34
@@ -71,7 +71,7 @@
-
The current version of doing
is <!--VER-->2.1.79<!--END VER-->.
+
The current version of doing
is <!--VER-->2.1.80<!--END VER-->.
Find all of the documentation in the doing wiki.
@@ -153,9 +153,9 @@
Changelog
diff --git a/docs/doc/frames.html b/docs/doc/frames.html
index a65e9365..4f918f57 100644
--- a/docs/doc/frames.html
+++ b/docs/doc/frames.html
@@ -2,7 +2,7 @@
- Documentation by YARD 0.9.28
+ Documentation by YARD 0.9.34