doing 2.1.36 → 2.1.37

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +9 -4912
  3. data/Gemfile.lock +1 -1
  4. data/README.md +1 -1
  5. data/bin/commands/done.rb +4 -4
  6. data/bin/commands/meanwhile.rb +3 -3
  7. data/bin/commands/note.rb +2 -2
  8. data/bin/commands/now.rb +3 -3
  9. data/bin/commands/on.rb +2 -1
  10. data/bin/doing +7 -0
  11. data/docs/doc/Array.html +1 -1
  12. data/docs/doc/BooleanTermParser/Clause.html +1 -1
  13. data/docs/doc/BooleanTermParser/Operator.html +1 -1
  14. data/docs/doc/BooleanTermParser/Query.html +1 -1
  15. data/docs/doc/BooleanTermParser/QueryParser.html +1 -1
  16. data/docs/doc/BooleanTermParser/QueryTransformer.html +1 -1
  17. data/docs/doc/BooleanTermParser.html +1 -1
  18. data/docs/doc/Doing/Color.html +1 -1
  19. data/docs/doc/Doing/Completion.html +1 -1
  20. data/docs/doc/Doing/Configuration.html +1 -1
  21. data/docs/doc/Doing/Errors/DoingNoTraceError.html +1 -1
  22. data/docs/doc/Doing/Errors/DoingRuntimeError.html +1 -1
  23. data/docs/doc/Doing/Errors/DoingStandardError.html +1 -1
  24. data/docs/doc/Doing/Errors/EmptyInput.html +1 -1
  25. data/docs/doc/Doing/Errors/NoResults.html +1 -1
  26. data/docs/doc/Doing/Errors/PluginException.html +1 -1
  27. data/docs/doc/Doing/Errors/UserCancelled.html +1 -1
  28. data/docs/doc/Doing/Errors/WrongCommand.html +1 -1
  29. data/docs/doc/Doing/Errors.html +1 -1
  30. data/docs/doc/Doing/Hooks.html +1 -1
  31. data/docs/doc/Doing/Item.html +1 -1
  32. data/docs/doc/Doing/Items.html +1 -1
  33. data/docs/doc/Doing/Logger.html +1 -1
  34. data/docs/doc/Doing/Note.html +1 -1
  35. data/docs/doc/Doing/Pager.html +1 -1
  36. data/docs/doc/Doing/Plugins.html +1 -1
  37. data/docs/doc/Doing/Prompt.html +1 -1
  38. data/docs/doc/Doing/Section.html +1 -1
  39. data/docs/doc/Doing/TemplateString.html +1 -1
  40. data/docs/doc/Doing/Types.html +1 -1
  41. data/docs/doc/Doing/Util/Backup.html +1 -1
  42. data/docs/doc/Doing/Util.html +1 -1
  43. data/docs/doc/Doing/WWID.html +1 -1
  44. data/docs/doc/Doing.html +2 -2
  45. data/docs/doc/FalseClass.html +1 -1
  46. data/docs/doc/GLI/Commands/Help.html +1 -1
  47. data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
  48. data/docs/doc/GLI/Commands.html +1 -1
  49. data/docs/doc/GLI.html +1 -1
  50. data/docs/doc/Hash.html +1 -1
  51. data/docs/doc/Object.html +1 -1
  52. data/docs/doc/PhraseParser/Operator.html +1 -1
  53. data/docs/doc/PhraseParser/PhraseClause.html +1 -1
  54. data/docs/doc/PhraseParser/Query.html +1 -1
  55. data/docs/doc/PhraseParser/QueryParser.html +1 -1
  56. data/docs/doc/PhraseParser/QueryTransformer.html +1 -1
  57. data/docs/doc/PhraseParser/TermClause.html +1 -1
  58. data/docs/doc/PhraseParser.html +1 -1
  59. data/docs/doc/Status.html +1 -1
  60. data/docs/doc/String.html +1 -1
  61. data/docs/doc/Symbol.html +1 -1
  62. data/docs/doc/Time.html +1 -1
  63. data/docs/doc/TrueClass.html +1 -1
  64. data/docs/doc/_index.html +1 -1
  65. data/docs/doc/file.README.html +2 -2
  66. data/docs/doc/index.html +2 -2
  67. data/docs/doc/top-level-namespace.html +1 -1
  68. data/doing.rdoc +1 -1
  69. data/lib/doing/chronify/string.rb +5 -4
  70. data/lib/doing/prompt.rb +3 -1
  71. data/lib/doing/version.rb +1 -1
  72. data/lib/doing.rb +1 -0
  73. metadata +2 -2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- doing (2.1.36)
4
+ doing (2.1.37)
5
5
  chronic (~> 0.10, >= 0.10.2)
6
6
  deep_merge (~> 1.2, >= 1.2.1)
7
7
  gli (~> 2.20, >= 2.20.1)
data/README.md CHANGED
@@ -8,7 +8,7 @@ _If you're one of the rare people like me who find this useful, feel free to
8
8
 
9
9
  <!--README-->
10
10
 
11
- The current version of `doing` is <!--VER-->2.1.35<!--END VER-->.
11
+ The current version of `doing` is <!--VER-->2.1.36<!--END VER-->.
12
12
 
13
13
  Find all of the documentation in the [doing wiki][wiki].
14
14
 
data/bin/commands/done.rb CHANGED
@@ -46,7 +46,7 @@ command %i[done did] do |c|
46
46
 
47
47
  add_options(:add_entry, c)
48
48
 
49
- c.action do |_global_options, options, args|
49
+ c.action do |global_options, options, args|
50
50
  Doing.auto_tag = !options[:noauto]
51
51
 
52
52
  took = 0
@@ -165,7 +165,7 @@ command %i[done did] do |c|
165
165
  end
166
166
 
167
167
  @wwid.write(@wwid.doing_file)
168
- elsif args.empty? && $stdin.stat.size.zero?
168
+ elsif args.empty? && global_options[:stdin].nil?
169
169
  if options[:remove]
170
170
  @wwid.tag_last({ tags: ['done'], count: 1, section: section, remove: true })
171
171
  else
@@ -203,9 +203,9 @@ command %i[done did] do |c|
203
203
  Doing::Hooks.trigger :post_entry_added, @wwid, new_entry
204
204
  @wwid.write(@wwid.doing_file)
205
205
  Doing.logger.info('New entry:', %(added "#{new_entry.date.relative_date}: #{new_entry.title}" to #{section}))
206
- elsif $stdin.stat.size.positive?
206
+ elsif !global_options[:stdin].nil?
207
207
  note = Doing::Note.new(options[:note])
208
- d, title, note = @wwid.format_input($stdin.read.strip)
208
+ d, title, note = @wwid.format_input(global_options[:stdin])
209
209
  unless d.nil?
210
210
  Doing.logger.debug('Parser:', 'Date detected in input, overriding command line values')
211
211
  date = d
@@ -20,7 +20,7 @@ command :meanwhile do |c|
20
20
 
21
21
  add_options(:add_entry, c)
22
22
 
23
- c.action do |_global_options, options, args|
23
+ c.action do |global_options, options, args|
24
24
  Doing.auto_tag = !options[:noauto]
25
25
 
26
26
  if options[:back]
@@ -50,8 +50,8 @@ command :meanwhile do |c|
50
50
  input = @wwid.fork_editor(input).strip
51
51
  elsif !args.empty?
52
52
  input = args.join(' ')
53
- elsif $stdin.stat.size.positive?
54
- input = $stdin.read.strip
53
+ elsif global_options[:stdin]
54
+ input = global_options[:stdin]
55
55
  end
56
56
 
57
57
  if input.good?
data/bin/commands/note.rb CHANGED
@@ -33,7 +33,7 @@ command :note do |c|
33
33
  add_options(:search, c)
34
34
  add_options(:tag_filter, c)
35
35
 
36
- c.action do |_global_options, options, args|
36
+ c.action do |global_options, options, args|
37
37
  options[:fuzzy] = false
38
38
  options[:section] = @wwid.guess_section(options[:section]) || options[:section].cap_first if options[:section]
39
39
  options[:tag_bool] = options[:bool]
@@ -52,7 +52,7 @@ command :note do |c|
52
52
  last_note = last_entry.note || Doing::Note.new
53
53
  new_note = Doing::Note.new
54
54
 
55
- new_note.add($stdin.read.strip) if $stdin.stat.size.positive?
55
+ new_note.add(global_options[:stdin]) if global_options[:stdin]
56
56
  new_note.add(args.join(' ')) unless args.empty?
57
57
 
58
58
  if options[:editor]
data/bin/commands/now.rb CHANGED
@@ -36,7 +36,7 @@ command %i[now next] do |c|
36
36
  # c.arg_name 'editor_app'
37
37
  # # c.flag [:a, :app]
38
38
 
39
- c.action do |_global_options, options, args|
39
+ c.action do |global_options, options, args|
40
40
  Doing.auto_tag = !options[:noauto]
41
41
 
42
42
  raise InvalidArgument, '--back and --from cannot be used together' if options[:back] && options[:from]
@@ -98,8 +98,8 @@ command %i[now next] do |c|
98
98
  end
99
99
  end
100
100
  @wwid.write(@wwid.doing_file)
101
- elsif $stdin.stat.size.positive?
102
- input = $stdin.read.strip
101
+ elsif global_options[:stdin]
102
+ input = global_options[:stdin]
103
103
  d, title, note = @wwid.format_input(input)
104
104
  unless d.nil?
105
105
  Doing.logger.debug('Parser:', 'Date detected in input, overriding command line values')
data/bin/commands/on.rb CHANGED
@@ -37,8 +37,9 @@ command :on do |c|
37
37
 
38
38
  date_string = args.join(' ').strip
39
39
  if date_string =~ /^tod(?:ay)?/i
40
- date_string = 'today to tomorrow 12am'
40
+ date_string = 'today 12am to today 11:59pm'
41
41
  end
42
+
42
43
  start, finish = date_string.split_date_range
43
44
 
44
45
  raise InvalidTimeExpression, 'Unrecognized date string' unless start
data/bin/doing CHANGED
@@ -258,6 +258,13 @@ around do |global, command, options, arguments, code|
258
258
  Doing.logger.adjust_verbosity(global)
259
259
  end
260
260
 
261
+ global[:stdin] = if $stdin.stat.size.positive? || $stdin.fcntl(Fcntl::F_GETFL, 0) == 0
262
+ $stdin.read.strip
263
+ else
264
+ nil
265
+ end
266
+ global[:stdin] = nil unless global[:stdin].good?
267
+
261
268
  if global[:stdout]
262
269
  Doing.logger.logdev = $stdout
263
270
  end
data/docs/doc/Array.html CHANGED
@@ -195,7 +195,7 @@ has content</p>
195
195
  </div>
196
196
 
197
197
  <div id="footer">
198
- Generated on Fri Feb 25 09:00:49 2022 by
198
+ Generated on Sat Mar 12 11:56:35 2022 by
199
199
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
200
200
  0.9.27 (ruby-3.0.1).
201
201
  </div>
@@ -283,7 +283,7 @@
283
283
  </div>
284
284
 
285
285
  <div id="footer">
286
- Generated on Fri Feb 25 09:00:49 2022 by
286
+ Generated on Sat Mar 12 11:56:36 2022 by
287
287
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
288
288
  0.9.27 (ruby-3.0.1).
289
289
  </div>
@@ -162,7 +162,7 @@
162
162
  </div>
163
163
 
164
164
  <div id="footer">
165
- Generated on Fri Feb 25 09:00:49 2022 by
165
+ Generated on Sat Mar 12 11:56:36 2022 by
166
166
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
167
167
  0.9.27 (ruby-3.0.1).
168
168
  </div>
@@ -407,7 +407,7 @@
407
407
  </div>
408
408
 
409
409
  <div id="footer">
410
- Generated on Fri Feb 25 09:00:49 2022 by
410
+ Generated on Sat Mar 12 11:56:36 2022 by
411
411
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
412
412
  0.9.27 (ruby-3.0.1).
413
413
  </div>
@@ -125,7 +125,7 @@ parser. In order to do that, a new &quot;clause&quot; node is added to the parse
125
125
  </div>
126
126
 
127
127
  <div id="footer">
128
- Generated on Fri Feb 25 09:00:49 2022 by
128
+ Generated on Sat Mar 12 11:56:36 2022 by
129
129
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
130
  0.9.27 (ruby-3.0.1).
131
131
  </div>
@@ -114,7 +114,7 @@
114
114
  </div>
115
115
 
116
116
  <div id="footer">
117
- Generated on Fri Feb 25 09:00:49 2022 by
117
+ Generated on Sat Mar 12 11:56:36 2022 by
118
118
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
119
119
  0.9.27 (ruby-3.0.1).
120
120
  </div>
@@ -105,7 +105,7 @@
105
105
  </div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Fri Feb 25 09:00:49 2022 by
108
+ Generated on Sat Mar 12 11:56:35 2022 by
109
109
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
110
  0.9.27 (ruby-3.0.1).
111
111
  </div>
@@ -518,7 +518,7 @@ ANSI-sequences are stripped from the string.</p>
518
518
  </div>
519
519
 
520
520
  <div id="footer">
521
- Generated on Fri Feb 25 09:00:49 2022 by
521
+ Generated on Sat Mar 12 11:56:35 2022 by
522
522
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
523
523
  0.9.27 (ruby-3.0.1).
524
524
  </div>
@@ -526,7 +526,7 @@ stdout</p>
526
526
  </div>
527
527
 
528
528
  <div id="footer">
529
- Generated on Fri Feb 25 09:00:49 2022 by
529
+ Generated on Sat Mar 12 11:56:35 2022 by
530
530
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
531
531
  0.9.27 (ruby-3.0.1).
532
532
  </div>
@@ -1139,7 +1139,7 @@ matched, first match wins)</p>
1139
1139
  </div>
1140
1140
 
1141
1141
  <div id="footer">
1142
- Generated on Fri Feb 25 09:00:49 2022 by
1142
+ Generated on Sat Mar 12 11:56:36 2022 by
1143
1143
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1144
1144
  0.9.27 (ruby-3.0.1).
1145
1145
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Fri Feb 25 09:00:49 2022 by
179
+ Generated on Sat Mar 12 11:56:35 2022 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.27 (ruby-3.0.1).
182
182
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Fri Feb 25 09:00:49 2022 by
179
+ Generated on Sat Mar 12 11:56:35 2022 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.27 (ruby-3.0.1).
182
182
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Fri Feb 25 09:00:49 2022 by
179
+ Generated on Sat Mar 12 11:56:35 2022 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.27 (ruby-3.0.1).
182
182
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Fri Feb 25 09:00:49 2022 by
179
+ Generated on Sat Mar 12 11:56:35 2022 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.27 (ruby-3.0.1).
182
182
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Fri Feb 25 09:00:49 2022 by
179
+ Generated on Sat Mar 12 11:56:35 2022 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.27 (ruby-3.0.1).
182
182
  </div>
@@ -238,7 +238,7 @@
238
238
  </div>
239
239
 
240
240
  <div id="footer">
241
- Generated on Fri Feb 25 09:00:49 2022 by
241
+ Generated on Sat Mar 12 11:56:35 2022 by
242
242
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
243
243
  0.9.27 (ruby-3.0.1).
244
244
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Fri Feb 25 09:00:49 2022 by
179
+ Generated on Sat Mar 12 11:56:35 2022 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.27 (ruby-3.0.1).
182
182
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Fri Feb 25 09:00:49 2022 by
179
+ Generated on Sat Mar 12 11:56:35 2022 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.27 (ruby-3.0.1).
182
182
  </div>
@@ -181,7 +181,7 @@
181
181
  </div>
182
182
 
183
183
  <div id="footer">
184
- Generated on Fri Feb 25 09:00:49 2022 by
184
+ Generated on Sat Mar 12 11:56:35 2022 by
185
185
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
186
186
  0.9.27 (ruby-3.0.1).
187
187
  </div>
@@ -354,7 +354,7 @@
354
354
  </div>
355
355
 
356
356
  <div id="footer">
357
- Generated on Fri Feb 25 09:00:49 2022 by
357
+ Generated on Sat Mar 12 11:56:35 2022 by
358
358
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
359
359
  0.9.27 (ruby-3.0.1).
360
360
  </div>
@@ -2370,7 +2370,7 @@ thus should not receive a date on the @done tag</p>
2370
2370
  </div>
2371
2371
 
2372
2372
  <div id="footer">
2373
- Generated on Fri Feb 25 09:00:49 2022 by
2373
+ Generated on Sat Mar 12 11:56:35 2022 by
2374
2374
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
2375
2375
  0.9.27 (ruby-3.0.1).
2376
2376
  </div>
@@ -1098,7 +1098,7 @@ specified section</p>
1098
1098
  </div>
1099
1099
 
1100
1100
  <div id="footer">
1101
- Generated on Fri Feb 25 09:00:49 2022 by
1101
+ Generated on Sat Mar 12 11:56:35 2022 by
1102
1102
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1103
1103
  0.9.27 (ruby-3.0.1).
1104
1104
  </div>
@@ -1797,7 +1797,7 @@ message (optional)</p>
1797
1797
  </div>
1798
1798
 
1799
1799
  <div id="footer">
1800
- Generated on Fri Feb 25 09:00:49 2022 by
1800
+ Generated on Sat Mar 12 11:56:35 2022 by
1801
1801
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1802
1802
  0.9.27 (ruby-3.0.1).
1803
1803
  </div>
@@ -733,7 +733,7 @@ join multiple lines</p>
733
733
  </div>
734
734
 
735
735
  <div id="footer">
736
- Generated on Fri Feb 25 09:00:49 2022 by
736
+ Generated on Sat Mar 12 11:56:35 2022 by
737
737
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
738
738
  0.9.27 (ruby-3.0.1).
739
739
  </div>
@@ -296,7 +296,7 @@ STDOUT</p>
296
296
  </div>
297
297
 
298
298
  <div id="footer">
299
- Generated on Fri Feb 25 09:00:49 2022 by
299
+ Generated on Sat Mar 12 11:56:35 2022 by
300
300
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
301
301
  0.9.27 (ruby-3.0.1).
302
302
  </div>
@@ -1235,7 +1235,7 @@ e.g. :imp =&gt; :import</p>
1235
1235
  </div>
1236
1236
 
1237
1237
  <div id="footer">
1238
- Generated on Fri Feb 25 09:00:49 2022 by
1238
+ Generated on Sat Mar 12 11:56:35 2022 by
1239
1239
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1240
1240
  0.9.27 (ruby-3.0.1).
1241
1241
  </div>
@@ -977,7 +977,7 @@ response if no input</p>
977
977
  </div>
978
978
 
979
979
  <div id="footer">
980
- Generated on Fri Feb 25 09:00:49 2022 by
980
+ Generated on Sat Mar 12 11:56:35 2022 by
981
981
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
982
982
  0.9.27 (ruby-3.0.1).
983
983
  </div>
@@ -344,7 +344,7 @@
344
344
  </div>
345
345
 
346
346
  <div id="footer">
347
- Generated on Fri Feb 25 09:00:49 2022 by
347
+ Generated on Sat Mar 12 11:56:35 2022 by
348
348
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
349
349
  0.9.27 (ruby-3.0.1).
350
350
  </div>
@@ -703,7 +703,7 @@ of colors and string locations</p>
703
703
  </div>
704
704
 
705
705
  <div id="footer">
706
- Generated on Fri Feb 25 09:00:49 2022 by
706
+ Generated on Sat Mar 12 11:56:36 2022 by
707
707
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
708
708
  0.9.27 (ruby-3.0.1).
709
709
  </div>
@@ -236,7 +236,7 @@
236
236
  </div>
237
237
 
238
238
  <div id="footer">
239
- Generated on Fri Feb 25 09:00:49 2022 by
239
+ Generated on Sat Mar 12 11:56:35 2022 by
240
240
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
241
241
  0.9.27 (ruby-3.0.1).
242
242
  </div>
@@ -836,7 +836,7 @@ in a hidden directory</p>
836
836
  </div>
837
837
 
838
838
  <div id="footer">
839
- Generated on Fri Feb 25 09:00:49 2022 by
839
+ Generated on Sat Mar 12 11:56:35 2022 by
840
840
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
841
841
  0.9.27 (ruby-3.0.1).
842
842
  </div>
@@ -925,7 +925,7 @@ other_hash - the other hash whose values will be persisted after the merge</p>
925
925
  </div>
926
926
 
927
927
  <div id="footer">
928
- Generated on Fri Feb 25 09:00:49 2022 by
928
+ Generated on Sat Mar 12 11:56:35 2022 by
929
929
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
930
930
  0.9.27 (ruby-3.0.1).
931
931
  </div>
@@ -4716,7 +4716,7 @@ json, or text)</p>
4716
4716
  </div>
4717
4717
 
4718
4718
  <div id="footer">
4719
- Generated on Fri Feb 25 09:00:49 2022 by
4719
+ Generated on Sat Mar 12 11:56:35 2022 by
4720
4720
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
4721
4721
  0.9.27 (ruby-3.0.1).
4722
4722
  </div>
data/docs/doc/Doing.html CHANGED
@@ -119,7 +119,7 @@
119
119
  <dt id="VERSION-constant" class="">VERSION =
120
120
 
121
121
  </dt>
122
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>2.1.36</span><span class='tstring_end'>&#39;</span></span></pre></dd>
122
+ <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>2.1.37</span><span class='tstring_end'>&#39;</span></span></pre></dd>
123
123
 
124
124
  </dl>
125
125
 
@@ -135,7 +135,7 @@
135
135
  </div>
136
136
 
137
137
  <div id="footer">
138
- Generated on Fri Feb 25 09:00:49 2022 by
138
+ Generated on Sat Mar 12 11:56:35 2022 by
139
139
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
140
140
  0.9.27 (ruby-3.0.1).
141
141
  </div>
@@ -225,7 +225,7 @@ has content</p>
225
225
  </div>
226
226
 
227
227
  <div id="footer">
228
- Generated on Fri Feb 25 09:00:49 2022 by
228
+ Generated on Sat Mar 12 11:56:35 2022 by
229
229
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
230
230
  0.9.27 (ruby-3.0.1).
231
231
  </div>
@@ -175,7 +175,7 @@
175
175
  </div>
176
176
 
177
177
  <div id="footer">
178
- Generated on Fri Feb 25 09:00:49 2022 by
178
+ Generated on Sat Mar 12 11:56:36 2022 by
179
179
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
180
180
  0.9.27 (ruby-3.0.1).
181
181
  </div>
@@ -753,7 +753,7 @@
753
753
  </div>
754
754
 
755
755
  <div id="footer">
756
- Generated on Fri Feb 25 09:00:49 2022 by
756
+ Generated on Sat Mar 12 11:56:36 2022 by
757
757
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
758
758
  0.9.27 (ruby-3.0.1).
759
759
  </div>
@@ -107,7 +107,7 @@
107
107
  </div>
108
108
 
109
109
  <div id="footer">
110
- Generated on Fri Feb 25 09:00:49 2022 by
110
+ Generated on Sat Mar 12 11:56:35 2022 by
111
111
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
112
112
  0.9.27 (ruby-3.0.1).
113
113
  </div>
data/docs/doc/GLI.html CHANGED
@@ -107,7 +107,7 @@
107
107
  </div>
108
108
 
109
109
  <div id="footer">
110
- Generated on Fri Feb 25 09:00:49 2022 by
110
+ Generated on Sat Mar 12 11:56:35 2022 by
111
111
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
112
112
  0.9.27 (ruby-3.0.1).
113
113
  </div>
data/docs/doc/Hash.html CHANGED
@@ -516,7 +516,7 @@
516
516
  </div>
517
517
 
518
518
  <div id="footer">
519
- Generated on Fri Feb 25 09:00:49 2022 by
519
+ Generated on Sat Mar 12 11:56:35 2022 by
520
520
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
521
521
  0.9.27 (ruby-3.0.1).
522
522
  </div>
data/docs/doc/Object.html CHANGED
@@ -193,7 +193,7 @@ has content</p>
193
193
  </div>
194
194
 
195
195
  <div id="footer">
196
- Generated on Fri Feb 25 09:00:49 2022 by
196
+ Generated on Sat Mar 12 11:56:35 2022 by
197
197
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
198
198
  0.9.27 (ruby-3.0.1).
199
199
  </div>
@@ -162,7 +162,7 @@
162
162
  </div>
163
163
 
164
164
  <div id="footer">
165
- Generated on Fri Feb 25 09:00:49 2022 by
165
+ Generated on Sat Mar 12 11:56:36 2022 by
166
166
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
167
167
  0.9.27 (ruby-3.0.1).
168
168
  </div>
@@ -293,7 +293,7 @@
293
293
  </div>
294
294
 
295
295
  <div id="footer">
296
- Generated on Fri Feb 25 09:00:49 2022 by
296
+ Generated on Sat Mar 12 11:56:36 2022 by
297
297
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
298
298
  0.9.27 (ruby-3.0.1).
299
299
  </div>
@@ -485,7 +485,7 @@
485
485
  </div>
486
486
 
487
487
  <div id="footer">
488
- Generated on Fri Feb 25 09:00:49 2022 by
488
+ Generated on Sat Mar 12 11:56:36 2022 by
489
489
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
490
490
  0.9.27 (ruby-3.0.1).
491
491
  </div>
@@ -126,7 +126,7 @@ A phrase clause generates an Elasticsearch match_phrase query.</p>
126
126
  </div>
127
127
 
128
128
  <div id="footer">
129
- Generated on Fri Feb 25 09:00:49 2022 by
129
+ Generated on Sat Mar 12 11:56:36 2022 by
130
130
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
131
131
  0.9.27 (ruby-3.0.1).
132
132
  </div>
@@ -114,7 +114,7 @@
114
114
  </div>
115
115
 
116
116
  <div id="footer">
117
- Generated on Fri Feb 25 09:00:49 2022 by
117
+ Generated on Sat Mar 12 11:56:36 2022 by
118
118
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
119
119
  0.9.27 (ruby-3.0.1).
120
120
  </div>