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
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::State
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
 
@@ -224,7 +224,7 @@
224
224
 
225
225
 
226
226
  <span class="summary_desc"><div class='inline'>
227
- <p>Return list of item specs (Array of `[name, options]`).</p>
227
+ <p>Return list of item specs (Array of [name, options]`).</p>
228
228
  </div></span>
229
229
 
230
230
  </li>
@@ -257,7 +257,7 @@
257
257
 
258
258
 
259
259
  <span class="summary_desc"><div class='inline'>
260
- <p>Return true if a State object `other` has same key-value paris as `self`.</p>
260
+ <p>Return true if a State object other` has same key-value paris as `self`.</p>
261
261
  </div></span>
262
262
 
263
263
  </li>
@@ -281,7 +281,7 @@
281
281
 
282
282
 
283
283
  <span class="summary_desc"><div class='inline'>
284
- <p>Return the value corresponds to `key`.</p>
284
+ <p>Return the value corresponds to key`.</p>
285
285
  </div></span>
286
286
 
287
287
  </li>
@@ -353,7 +353,7 @@
353
353
 
354
354
 
355
355
  <span class="summary_desc"><div class='inline'>
356
- <p>Create new state object from `self` and `hash`.</p>
356
+ <p>Create new state object from self` and `hash`.</p>
357
357
  </div></span>
358
358
 
359
359
  </li>
@@ -627,7 +627,7 @@
627
627
  </h3><div class="docstring">
628
628
  <div class="discussion">
629
629
 
630
- <p>Return list of item specs (Array of `[name, options]`)</p>
630
+ <p>Return list of item specs (Array of [name, options]`)</p>
631
631
 
632
632
 
633
633
  </div>
@@ -674,7 +674,7 @@
674
674
  </h3><div class="docstring">
675
675
  <div class="discussion">
676
676
 
677
- <p>Return true if a State object `other` has same key-value paris as `self`</p>
677
+ <p>Return true if a State object other` has same key-value paris as `self`</p>
678
678
 
679
679
 
680
680
  </div>
@@ -715,7 +715,7 @@
715
715
  </h3><div class="docstring">
716
716
  <div class="discussion">
717
717
 
718
- <p>Return the value corresponds to `key`</p>
718
+ <p>Return the value corresponds to key`</p>
719
719
 
720
720
 
721
721
  </div>
@@ -786,7 +786,7 @@
786
786
  </h3><div class="docstring">
787
787
  <div class="discussion">
788
788
 
789
- <p>Create new state object from `self` and `hash`</p>
789
+ <p>Create new state object from self` and `hash`</p>
790
790
 
791
791
 
792
792
  </div>
@@ -858,9 +858,9 @@
858
858
  </div>
859
859
 
860
860
  <div id="footer">
861
- Generated on Fri Oct 22 08:18:18 2021 by
862
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
863
- 0.9.26 (ruby-3.0.2).
861
+ Generated on Sat Apr 22 23:42:33 2023 by
862
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
863
+ 0.9.34 (ruby-3.2.2).
864
864
  </div>
865
865
 
866
866
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::WiredActionSet
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
 
@@ -626,9 +626,9 @@
626
626
  </div>
627
627
 
628
628
  <div id="footer">
629
- Generated on Fri Oct 22 08:18:18 2021 by
630
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
631
- 0.9.26 (ruby-3.0.2).
629
+ Generated on Sat Apr 22 23:42:33 2023 by
630
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
631
+ 0.9.34 (ruby-3.2.2).
632
632
  </div>
633
633
 
634
634
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Ovto::WiredActions
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
 
@@ -445,9 +445,9 @@
445
445
  </div>
446
446
 
447
447
  <div id="footer">
448
- Generated on Fri Oct 22 08:18:18 2021 by
449
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
450
- 0.9.26 (ruby-3.0.2).
448
+ Generated on Sat Apr 22 23:42:33 2023 by
449
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
450
+ 0.9.34 (ruby-3.2.2).
451
451
  </div>
452
452
 
453
453
  </div>
data/docs/api/Ovto.html CHANGED
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Ovto
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
 
@@ -109,7 +109,7 @@
109
109
  <dt id="VERSION-constant" class="">VERSION =
110
110
 
111
111
  </dt>
112
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>0.6.1</span><span class='tstring_end'>&#39;</span></span></pre></dd>
112
+ <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>0.7.0</span><span class='tstring_end'>&#39;</span></span></pre></dd>
113
113
 
114
114
  <dt id="VALID_NAME_REXP-constant" class="">VALID_NAME_REXP =
115
115
 
@@ -337,7 +337,7 @@
337
337
 
338
338
 
339
339
  <span class="summary_desc"><div class='inline'>
340
- <p>Something like `obj.meth(state: state, **args, &amp;block)` Safe even if `obj.meth` does not have `state:`.</p>
340
+ <p>Something like obj.meth(state: state, **args, &amp;block)` Safe even if `obj.meth` does not have `state:`.</p>
341
341
  </div></span>
342
342
 
343
343
  </li>
@@ -646,7 +646,7 @@
646
646
  </h3><div class="docstring">
647
647
  <div class="discussion">
648
648
 
649
- <p>Call block. If an exception is raised and there is a tag with `id=&#39;ovto-debug&#39;`, describe the error in that tag</p>
649
+ <p>Call block. If an exception is raised and there is a tag with id=’ovto-debug’‘, describe the error in that tag</p>
650
650
 
651
651
 
652
652
  </div>
@@ -789,7 +789,7 @@
789
789
  </h3><div class="docstring">
790
790
  <div class="discussion">
791
791
 
792
- <p>Something like `obj.meth(state: state, **args, &amp;block)` Safe even if `obj.meth` does not have `state:`</p>
792
+ <p>Something like obj.meth(state: state, **args, &amp;block)` Safe even if `obj.meth` does not have `state:`</p>
793
793
 
794
794
 
795
795
  </div>
@@ -857,9 +857,9 @@
857
857
  </div>
858
858
 
859
859
  <div id="footer">
860
- Generated on Fri Oct 22 08:18:17 2021 by
861
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
862
- 0.9.26 (ruby-3.0.2).
860
+ Generated on Sat Apr 22 23:42:33 2023 by
861
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
862
+ 0.9.34 (ruby-3.2.2).
863
863
  </div>
864
864
 
865
865
  </div>
data/docs/api/_index.html CHANGED
@@ -4,7 +4,7 @@
4
4
  <meta charset="utf-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
6
  <title>
7
- Documentation by YARD 0.9.26
7
+ Documentation by YARD 0.9.34
8
8
 
9
9
  </title>
10
10
 
@@ -52,7 +52,7 @@
52
52
  <div class="clear"></div>
53
53
  </div>
54
54
 
55
- <div id="content"><h1 class="noborder title">Documentation by YARD 0.9.26</h1>
55
+ <div id="content"><h1 class="noborder title">Documentation by YARD 0.9.34</h1>
56
56
  <div id="listing">
57
57
  <h1 class="alphaindex">Alphabetic Index</h1>
58
58
 
@@ -309,9 +309,9 @@
309
309
  </div>
310
310
 
311
311
  <div id="footer">
312
- Generated on Fri Oct 22 08:18:16 2021 by
313
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
314
- 0.9.26 (ruby-3.0.2).
312
+ Generated on Sat Apr 22 23:42:33 2023 by
313
+ <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
314
+ 0.9.34 (ruby-3.2.2).
315
315
  </div>
316
316
 
317
317
  </div>