ovto 0.6.2 → 0.7.0

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 (112) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile.lock +15 -16
  4. data/Rakefile +2 -9
  5. data/book/SUMMARY.md +15 -11
  6. data/book/book.toml +10 -0
  7. data/docs/.nojekyll +1 -0
  8. data/docs/404.html +189 -0
  9. data/docs/FontAwesome/css/font-awesome.css +4 -0
  10. data/docs/FontAwesome/fonts/FontAwesome.ttf +0 -0
  11. data/docs/FontAwesome/fonts/fontawesome-webfont.eot +0 -0
  12. data/docs/FontAwesome/fonts/fontawesome-webfont.svg +2671 -0
  13. data/docs/{gitbook/fonts/fontawesome → FontAwesome/fonts}/fontawesome-webfont.ttf +0 -0
  14. data/docs/FontAwesome/fonts/fontawesome-webfont.woff +0 -0
  15. data/docs/FontAwesome/fonts/fontawesome-webfont.woff2 +0 -0
  16. data/docs/api/Array.html +4 -4
  17. data/docs/api/Hash.html +4 -4
  18. data/docs/api/MightyInspect.html +238 -0
  19. data/docs/api/Ovto/Actions.html +4 -4
  20. data/docs/api/Ovto/App.html +4 -4
  21. data/docs/api/Ovto/Component/MoreThanOneNode.html +5 -5
  22. data/docs/api/Ovto/Component.html +4 -4
  23. data/docs/api/Ovto/Middleware/Actions.html +4 -4
  24. data/docs/api/Ovto/Middleware/Base.html +5 -5
  25. data/docs/api/Ovto/Middleware/Component.html +5 -5
  26. data/docs/api/Ovto/Middleware.html +8 -8
  27. data/docs/api/Ovto/PureComponent/StateIsNotAvailable.html +4 -4
  28. data/docs/api/Ovto/PureComponent.html +4 -4
  29. data/docs/api/Ovto/Runtime.html +4 -4
  30. data/docs/api/Ovto/State/MissingValue.html +4 -4
  31. data/docs/api/Ovto/State/UnknownStateKey.html +4 -4
  32. data/docs/api/Ovto/State.html +12 -12
  33. data/docs/api/Ovto/WiredActionSet.html +4 -4
  34. data/docs/api/Ovto/WiredActions.html +4 -4
  35. data/docs/api/Ovto.html +8 -8
  36. data/docs/api/_index.html +5 -5
  37. data/docs/api/actions.html +215 -426
  38. data/docs/api/app.html +226 -432
  39. data/docs/api/component.html +268 -480
  40. data/docs/api/fetch.html +188 -393
  41. data/docs/api/file.README.html +4 -4
  42. data/docs/api/frames.html +1 -1
  43. data/docs/api/index.html +4 -4
  44. data/docs/api/middleware.html +249 -460
  45. data/docs/api/pure_component.html +186 -398
  46. data/docs/api/state.html +226 -438
  47. data/docs/api/top-level-namespace.html +4 -4
  48. data/docs/ayu-highlight.css +78 -0
  49. data/docs/book.js +688 -0
  50. data/docs/book.toml +10 -0
  51. data/docs/clipboard.min.js +7 -0
  52. data/docs/css/chrome.css +545 -0
  53. data/docs/css/general.css +203 -0
  54. data/docs/css/print.css +54 -0
  55. data/docs/css/variables.css +255 -0
  56. data/docs/elasticlunr.min.js +10 -0
  57. data/docs/favicon.png +0 -0
  58. data/docs/favicon.svg +22 -0
  59. data/docs/fonts/OPEN-SANS-LICENSE.txt +202 -0
  60. data/docs/fonts/SOURCE-CODE-PRO-LICENSE.txt +93 -0
  61. data/docs/fonts/fonts.css +100 -0
  62. data/docs/fonts/open-sans-v17-all-charsets-300.woff2 +0 -0
  63. data/docs/fonts/open-sans-v17-all-charsets-300italic.woff2 +0 -0
  64. data/docs/fonts/open-sans-v17-all-charsets-600.woff2 +0 -0
  65. data/docs/fonts/open-sans-v17-all-charsets-600italic.woff2 +0 -0
  66. data/docs/fonts/open-sans-v17-all-charsets-700.woff2 +0 -0
  67. data/docs/fonts/open-sans-v17-all-charsets-700italic.woff2 +0 -0
  68. data/docs/fonts/open-sans-v17-all-charsets-800.woff2 +0 -0
  69. data/docs/fonts/open-sans-v17-all-charsets-800italic.woff2 +0 -0
  70. data/docs/fonts/open-sans-v17-all-charsets-italic.woff2 +0 -0
  71. data/docs/fonts/open-sans-v17-all-charsets-regular.woff2 +0 -0
  72. data/docs/fonts/source-code-pro-v11-all-charsets-500.woff2 +0 -0
  73. data/docs/guides/debugging.html +184 -390
  74. data/docs/guides/development.html +171 -383
  75. data/docs/guides/install.html +206 -409
  76. data/docs/guides/tutorial.html +309 -525
  77. data/docs/highlight.css +82 -0
  78. data/docs/highlight.js +6 -0
  79. data/docs/index.html +390 -391
  80. data/docs/mark.min.js +7 -0
  81. data/docs/print.html +958 -0
  82. data/docs/searcher.js +483 -0
  83. data/docs/searchindex.js +1 -0
  84. data/docs/searchindex.json +1 -0
  85. data/docs/tomorrow-night.css +102 -0
  86. data/examples/sinatra/Gemfile.lock +25 -25
  87. data/examples/static/Gemfile.lock +8 -8
  88. data/lib/ovto/component.rb +2 -3
  89. data/lib/ovto/version.rb +1 -1
  90. metadata +47 -26
  91. data/docs/gitbook/fonts/fontawesome/FontAwesome.otf +0 -0
  92. data/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot +0 -0
  93. data/docs/gitbook/fonts/fontawesome/fontawesome-webfont.svg +0 -685
  94. data/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff +0 -0
  95. data/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 +0 -0
  96. data/docs/gitbook/gitbook-plugin-fontsettings/fontsettings.js +0 -240
  97. data/docs/gitbook/gitbook-plugin-fontsettings/website.css +0 -291
  98. data/docs/gitbook/gitbook-plugin-highlight/ebook.css +0 -135
  99. data/docs/gitbook/gitbook-plugin-highlight/website.css +0 -434
  100. data/docs/gitbook/gitbook-plugin-lunr/lunr.min.js +0 -7
  101. data/docs/gitbook/gitbook-plugin-lunr/search-lunr.js +0 -59
  102. data/docs/gitbook/gitbook-plugin-search/lunr.min.js +0 -7
  103. data/docs/gitbook/gitbook-plugin-search/search-engine.js +0 -50
  104. data/docs/gitbook/gitbook-plugin-search/search.css +0 -35
  105. data/docs/gitbook/gitbook-plugin-search/search.js +0 -213
  106. data/docs/gitbook/gitbook-plugin-sharing/buttons.js +0 -90
  107. data/docs/gitbook/gitbook.js +0 -4
  108. data/docs/gitbook/images/apple-touch-icon-precomposed-152.png +0 -0
  109. data/docs/gitbook/images/favicon.ico +0 -0
  110. data/docs/gitbook/style.css +0 -9
  111. data/docs/gitbook/theme.js +0 -4
  112. data/docs/search_index.json +0 -1
data/docs/api/Array.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Array
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -180,9 +180,9 @@
180
180
  </div>
181
181
 
182
182
  <div id="footer">
183
- Generated on Fri Oct 22 08:18:18 2021 by
184
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
185
- 0.9.26 (ruby-3.0.2).
183
+ Generated on Sat Apr 22 23:42:33 2023 by
184
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
185
+ 0.9.34 (ruby-3.2.2).
186
186
  </div>
187
187
 
188
188
  </div>
data/docs/api/Hash.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Hash
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -186,9 +186,9 @@
186
186
  </div>
187
187
 
188
188
  <div id="footer">
189
- Generated on Fri Oct 22 08:18:18 2021 by
190
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
191
- 0.9.26 (ruby-3.0.2).
189
+ Generated on Sat Apr 22 23:42:33 2023 by
190
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
191
+ 0.9.34 (ruby-3.2.2).
192
192
  </div>
193
193
 
194
194
  </div>
@@ -0,0 +1,238 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Module: MightyInspect
8
+
9
+ &mdash; Documentation by YARD 0.9.34
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" />
14
+
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ pathId = "MightyInspect";
19
+ relpath = '';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="class_list.html?1"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="_index.html">Index (M)</a> &raquo;
40
+
41
+
42
+ <span class="title">MightyInspect</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <div id="content"><h1>Module: MightyInspect
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+ <dl>
80
+ <dt>Defined in:</dt>
81
+ <dd>lib/mighty_inspect.rb</dd>
82
+ </dl>
83
+
84
+ </div>
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+ <h2>
95
+ Class Method Summary
96
+ <small><a href="#" class="summary_toggle">collapse</a></small>
97
+ </h2>
98
+
99
+ <ul class="summary">
100
+
101
+ <li class="public ">
102
+ <span class="summary_signature">
103
+
104
+ <a href="#mighty_inspect-class_method" title="mighty_inspect (class method)">.<strong>mighty_inspect</strong>(obj) &#x21d2; Object </a>
105
+
106
+
107
+
108
+ </span>
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+ <span class="summary_desc"><div class='inline'></div></span>
119
+
120
+ </li>
121
+
122
+
123
+ <li class="public ">
124
+ <span class="summary_signature">
125
+
126
+ <a href="#p-class_method" title="p (class method)">.<strong>p</strong>(obj) &#x21d2; Object </a>
127
+
128
+
129
+
130
+ </span>
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+ <span class="summary_desc"><div class='inline'></div></span>
141
+
142
+ </li>
143
+
144
+
145
+ </ul>
146
+
147
+
148
+
149
+
150
+ <div id="class_method_details" class="method_details_list">
151
+ <h2>Class Method Details</h2>
152
+
153
+
154
+ <div class="method_details first">
155
+ <h3 class="signature first" id="mighty_inspect-class_method">
156
+
157
+ .<strong>mighty_inspect</strong>(obj) &#x21d2; <tt>Object</tt>
158
+
159
+
160
+
161
+
162
+
163
+ </h3><table class="source_code">
164
+ <tr>
165
+ <td>
166
+ <pre class="lines">
167
+
168
+
169
+ 6
170
+ 7
171
+ 8
172
+ 9
173
+ 10
174
+ 11
175
+ 12
176
+ 13
177
+ 14</pre>
178
+ </td>
179
+ <td>
180
+ <pre class="code"><span class="info file"># File 'lib/mighty_inspect.rb', line 6</span>
181
+
182
+ <span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_mighty_inspect'>mighty_inspect</span><span class='lparen'>(</span><span class='id identifier rubyid_obj'>obj</span><span class='rparen'>)</span>
183
+ <span class='kw'>if</span> <span class='backtick'>`</span><span class='tstring_content'>obj.$mighty_inspect</span><span class='tstring_end'>`</span></span> <span class='op'>&amp;&amp;</span> <span class='id identifier rubyid_obj'>obj</span><span class='period'>.</span><span class='id identifier rubyid_respond_to?'>respond_to?</span><span class='lparen'>(</span><span class='symbol'>:mighty_inspect</span><span class='rparen'>)</span>
184
+ <span class='id identifier rubyid_obj'>obj</span><span class='period'>.</span><span class='id identifier rubyid_mighty_inspect'>mighty_inspect</span>
185
+ <span class='kw'>elsif</span> <span class='backtick'>`</span><span class='tstring_content'>obj.$inspect</span><span class='tstring_end'>`</span></span>
186
+ <span class='id identifier rubyid_obj'>obj</span><span class='period'>.</span><span class='id identifier rubyid_inspect'>inspect</span>
187
+ <span class='kw'>else</span>
188
+ <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>#&lt;JS </span><span class='tstring_end'>&quot;</span></span> <span class='op'>+</span> <span class='backtick'>`</span><span class='tstring_content'>JSON.stringify(</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_obj'>obj</span><span class='embexpr_end'>}</span><span class='tstring_content'>) || &quot;undefined&quot;</span><span class='tstring_end'>`</span></span> <span class='op'>+</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>&gt;</span><span class='tstring_end'>&quot;</span></span>
189
+ <span class='kw'>end</span>
190
+ <span class='kw'>end</span></pre>
191
+ </td>
192
+ </tr>
193
+ </table>
194
+ </div>
195
+
196
+ <div class="method_details ">
197
+ <h3 class="signature " id="p-class_method">
198
+
199
+ .<strong>p</strong>(obj) &#x21d2; <tt>Object</tt>
200
+
201
+
202
+
203
+
204
+
205
+ </h3><table class="source_code">
206
+ <tr>
207
+ <td>
208
+ <pre class="lines">
209
+
210
+
211
+ 2
212
+ 3
213
+ 4</pre>
214
+ </td>
215
+ <td>
216
+ <pre class="code"><span class="info file"># File 'lib/mighty_inspect.rb', line 2</span>
217
+
218
+ <span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_p'>p</span><span class='lparen'>(</span><span class='id identifier rubyid_obj'>obj</span><span class='rparen'>)</span>
219
+ <span class='const'>Kernel</span><span class='period'>.</span><span class='id identifier rubyid_puts'>puts</span> <span class='id identifier rubyid_mighty_inspect'>mighty_inspect</span><span class='lparen'>(</span><span class='id identifier rubyid_obj'>obj</span><span class='rparen'>)</span>
220
+ <span class='kw'>end</span></pre>
221
+ </td>
222
+ </tr>
223
+ </table>
224
+ </div>
225
+
226
+ </div>
227
+
228
+ </div>
229
+
230
+ <div id="footer">
231
+ Generated on Sat Apr 22 23:42:33 2023 by
232
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
233
+ 0.9.34 (ruby-3.2.2).
234
+ </div>
235
+
236
+ </div>
237
+ </body>
238
+ </html>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::Actions
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -433,9 +433,9 @@
433
433
  </div>
434
434
 
435
435
  <div id="footer">
436
- Generated on Fri Oct 22 08:18:18 2021 by
437
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
438
- 0.9.26 (ruby-3.0.2).
436
+ Generated on Sat Apr 22 23:42:33 2023 by
437
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
438
+ 0.9.34 (ruby-3.2.2).
439
439
  </div>
440
440
 
441
441
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::App
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -824,9 +824,9 @@
824
824
  </div>
825
825
 
826
826
  <div id="footer">
827
- Generated on Fri Oct 22 08:18:18 2021 by
828
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
829
- 0.9.26 (ruby-3.0.2).
827
+ Generated on Sat Apr 22 23:42:33 2023 by
828
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
829
+ 0.9.34 (ruby-3.2.2).
830
830
  </div>
831
831
 
832
832
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: Ovto::Component::MoreThanOneNode
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -104,7 +104,7 @@
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
106
 
107
- <p>`render` tried to yield multiple nodes</p>
107
+ <p>‘render` tried to yield multiple nodes</p>
108
108
 
109
109
 
110
110
  </div>
@@ -125,9 +125,9 @@
125
125
  </div>
126
126
 
127
127
  <div id="footer">
128
- Generated on Fri Oct 22 08:18:18 2021 by
129
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
- 0.9.26 (ruby-3.0.2).
128
+ Generated on Sat Apr 22 23:42:33 2023 by
129
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
+ 0.9.34 (ruby-3.2.2).
131
131
  </div>
132
132
 
133
133
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::Component
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -467,9 +467,9 @@
467
467
  </div>
468
468
 
469
469
  <div id="footer">
470
- Generated on Fri Oct 22 08:18:18 2021 by
471
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
472
- 0.9.26 (ruby-3.0.2).
470
+ Generated on Sat Apr 22 23:42:33 2023 by
471
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
472
+ 0.9.34 (ruby-3.2.2).
473
473
  </div>
474
474
 
475
475
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::Middleware::Actions
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -418,9 +418,9 @@
418
418
  </div>
419
419
 
420
420
  <div id="footer">
421
- Generated on Fri Oct 22 08:18:18 2021 by
422
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
423
- 0.9.26 (ruby-3.0.2).
421
+ Generated on Sat Apr 22 23:42:33 2023 by
422
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
423
+ 0.9.34 (ruby-3.2.2).
424
424
  </div>
425
425
 
426
426
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::Middleware::Base
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -102,7 +102,7 @@
102
102
  <h2>Overview</h2><div class="docstring">
103
103
  <div class="discussion">
104
104
 
105
- <p>Base class of a middleware class Note: this is not the direct superclass of a middleware. `SomeMiddleware &lt; (anonymous class) &lt; Middleware::Base`</p>
105
+ <p>Base class of a middleware class Note: this is not the direct superclass of a middleware. SomeMiddleware &lt; (anonymous class) &lt; Middleware::Base`</p>
106
106
 
107
107
 
108
108
  </div>
@@ -595,9 +595,9 @@
595
595
  </div>
596
596
 
597
597
  <div id="footer">
598
- Generated on Fri Oct 22 08:18:18 2021 by
599
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
600
- 0.9.26 (ruby-3.0.2).
598
+ Generated on Sat Apr 22 23:42:33 2023 by
599
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
600
+ 0.9.34 (ruby-3.2.2).
601
601
  </div>
602
602
 
603
603
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::Middleware::Component
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -104,7 +104,7 @@
104
104
  <h2>Overview</h2><div class="docstring">
105
105
  <div class="discussion">
106
106
 
107
- <p>Base class of middleware component Basically the same as Ovto::Component but `actions` is wired to middleware actions.</p>
107
+ <p>Base class of middleware component Basically the same as Ovto::Component but actions` is wired to middleware actions.</p>
108
108
 
109
109
 
110
110
  </div>
@@ -344,9 +344,9 @@
344
344
  </div>
345
345
 
346
346
  <div id="footer">
347
- Generated on Fri Oct 22 08:18:18 2021 by
348
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
349
- 0.9.26 (ruby-3.0.2).
347
+ Generated on Sat Apr 22 23:42:33 2023 by
348
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
349
+ 0.9.34 (ruby-3.2.2).
350
350
  </div>
351
351
 
352
352
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Ovto::Middleware
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -126,7 +126,7 @@
126
126
 
127
127
 
128
128
  <span class="summary_desc"><div class='inline'>
129
- <p>(internal) Create a subclass of Ovto::State that handles states of `middlewares` Called from App#initialize.</p>
129
+ <p>(internal) Create a subclass of Ovto::State that handles states of middlewares` Called from App#initialize.</p>
130
130
  </div></span>
131
131
 
132
132
  </li>
@@ -150,7 +150,7 @@
150
150
 
151
151
 
152
152
  <span class="summary_desc"><div class='inline'>
153
- <p>Get the state of the middleware specified with `middleware_path`.</p>
153
+ <p>Get the state of the middleware specified with middleware_path`.</p>
154
154
  </div></span>
155
155
 
156
156
  </li>
@@ -177,7 +177,7 @@
177
177
  </h3><div class="docstring">
178
178
  <div class="discussion">
179
179
 
180
- <p>(internal) Create a subclass of Ovto::State that handles states of `middlewares` Called from App#initialize</p>
180
+ <p>(internal) Create a subclass of Ovto::State that handles states of middlewares` Called from App#initialize</p>
181
181
 
182
182
 
183
183
  </div>
@@ -238,7 +238,7 @@
238
238
  </h3><div class="docstring">
239
239
  <div class="discussion">
240
240
 
241
- <p>Get the state of the middleware specified with `middleware_path`</p>
241
+ <p>Get the state of the middleware specified with middleware_path`</p>
242
242
 
243
243
 
244
244
  </div>
@@ -276,9 +276,9 @@
276
276
  </div>
277
277
 
278
278
  <div id="footer">
279
- Generated on Fri Oct 22 08:18:17 2021 by
280
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
281
- 0.9.26 (ruby-3.0.2).
279
+ Generated on Sat Apr 22 23:42:33 2023 by
280
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
281
+ 0.9.34 (ruby-3.2.2).
282
282
  </div>
283
283
 
284
284
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: Ovto::PureComponent::StateIsNotAvailable
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -114,9 +114,9 @@
114
114
  </div>
115
115
 
116
116
  <div id="footer">
117
- Generated on Fri Oct 22 08:18:18 2021 by
118
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
119
- 0.9.26 (ruby-3.0.2).
117
+ Generated on Sat Apr 22 23:42:33 2023 by
118
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
119
+ 0.9.34 (ruby-3.2.2).
120
120
  </div>
121
121
 
122
122
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::PureComponent
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -358,9 +358,9 @@
358
358
  </div>
359
359
 
360
360
  <div id="footer">
361
- Generated on Fri Oct 22 08:18:18 2021 by
362
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
363
- 0.9.26 (ruby-3.0.2).
361
+ Generated on Sat Apr 22 23:42:33 2023 by
362
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
363
+ 0.9.34 (ruby-3.2.2).
364
364
  </div>
365
365
 
366
366
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::Runtime
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -313,9 +313,9 @@
313
313
  </div>
314
314
 
315
315
  <div id="footer">
316
- Generated on Fri Oct 22 08:18:18 2021 by
317
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
318
- 0.9.26 (ruby-3.0.2).
316
+ Generated on Sat Apr 22 23:42:33 2023 by
317
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
318
+ 0.9.34 (ruby-3.2.2).
319
319
  </div>
320
320
 
321
321
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: Ovto::State::MissingValue
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -125,9 +125,9 @@
125
125
  </div>
126
126
 
127
127
  <div id="footer">
128
- Generated on Fri Oct 22 08:18:18 2021 by
129
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
- 0.9.26 (ruby-3.0.2).
128
+ Generated on Sat Apr 22 23:42:33 2023 by
129
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
+ 0.9.34 (ruby-3.2.2).
131
131
  </div>
132
132
 
133
133
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: Ovto::State::UnknownStateKey
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.34
10
10
 
11
11
  </title>
12
12
 
@@ -125,9 +125,9 @@
125
125
  </div>
126
126
 
127
127
  <div id="footer">
128
- Generated on Fri Oct 22 08:18:18 2021 by
129
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
- 0.9.26 (ruby-3.0.2).
128
+ Generated on Sat Apr 22 23:42:33 2023 by
129
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
130
+ 0.9.34 (ruby-3.2.2).
131
131
  </div>
132
132
 
133
133
  </div>