ovto 0.4.1 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -1
- data/.gitmodules +3 -0
- data/CHANGELOG.md +15 -2
- data/Gemfile +2 -2
- data/Gemfile.lock +23 -27
- data/README.md +2 -2
- data/book/SUMMARY.md +3 -1
- data/book/api/actions.md +1 -1
- data/book/api/fetch.md +3 -3
- data/book/api/middleware.md +99 -0
- data/book/api/pure_component.md +30 -0
- data/book/guides/install.md +76 -0
- data/book/guides/tutorial.md +3 -3
- data/book/ovtologo.png +0 -0
- data/docs/api/Array.html +190 -0
- data/docs/api/Hash.html +196 -0
- data/docs/api/Ovto/Actions.html +132 -40
- data/docs/api/Ovto/App.html +254 -40
- data/docs/api/Ovto/Component/MoreThanOneNode.html +6 -6
- data/docs/api/Ovto/Component.html +102 -27
- data/docs/api/Ovto/Middleware/Actions.html +428 -0
- data/docs/api/Ovto/Middleware/Base.html +606 -0
- data/docs/api/Ovto/Middleware/Component.html +355 -0
- data/docs/api/Ovto/Middleware.html +288 -0
- data/docs/api/Ovto/PureComponent/StateIsNotAvailable.html +124 -0
- data/docs/api/Ovto/PureComponent.html +368 -0
- data/docs/api/Ovto/Runtime.html +7 -7
- data/docs/api/Ovto/State/MissingValue.html +6 -6
- data/docs/api/Ovto/State/{UnknownKey.html → UnknownStateKey.html} +11 -11
- data/docs/api/Ovto/State.html +59 -43
- data/docs/api/Ovto/WiredActionSet.html +636 -0
- data/docs/api/Ovto/WiredActions.html +78 -35
- data/docs/api/Ovto.html +226 -29
- data/docs/api/_index.html +99 -11
- data/docs/api/actions.html +36 -10
- data/docs/api/app.html +35 -9
- data/docs/api/class_list.html +3 -3
- data/docs/api/component.html +37 -11
- data/docs/api/css/style.css +2 -2
- data/docs/api/fetch.html +40 -14
- data/docs/api/file.README.html +8 -8
- data/docs/api/file_list.html +2 -2
- data/docs/api/frames.html +2 -2
- data/docs/api/index.html +8 -8
- data/docs/api/js/app.js +14 -3
- data/docs/api/method_list.html +318 -22
- data/docs/api/middleware.html +498 -0
- data/docs/api/pure_component.html +428 -0
- data/docs/api/state.html +35 -9
- data/docs/api/top-level-namespace.html +9 -7
- data/docs/gitbook/gitbook.js +2 -2
- data/docs/gitbook/theme.js +1 -1
- data/docs/guides/debugging.html +35 -9
- data/docs/guides/development.html +35 -9
- data/docs/guides/install.html +452 -0
- data/docs/guides/tutorial.html +101 -66
- data/docs/index.html +37 -17
- data/docs/ovtologo.png +0 -0
- data/docs/search_index.json +1 -1
- data/examples/sinatra/Gemfile +2 -0
- data/examples/sinatra/Gemfile.lock +33 -31
- data/examples/sinatra/app.rb +1 -4
- data/examples/sinatra/config.ru +6 -6
- data/examples/static/Gemfile.lock +10 -14
- data/lib/ovto/actions.rb +11 -0
- data/lib/ovto/app.rb +37 -13
- data/lib/ovto/component.rb +149 -73
- data/lib/ovto/fetch.rb +1 -1
- data/lib/ovto/middleware.rb +121 -0
- data/lib/ovto/pure_component.rb +22 -0
- data/lib/ovto/state.rb +13 -5
- data/lib/ovto/version.rb +1 -1
- data/lib/ovto/wired_action_set.rb +40 -0
- data/lib/ovto/wired_actions.rb +49 -11
- data/lib/ovto.rb +27 -0
- data/ovto.gemspec +1 -1
- metadata +35 -9
@@ -0,0 +1,428 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE HTML>
|
3
|
+
<html lang="" >
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
|
7
|
+
<title>Ovto::PureComponent · GitBook</title>
|
8
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
9
|
+
<meta name="description" content="">
|
10
|
+
<meta name="generator" content="GitBook 3.2.2">
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="../gitbook/style.css">
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
<link rel="stylesheet" href="../gitbook/gitbook-plugin-highlight/website.css">
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
<link rel="stylesheet" href="../gitbook/gitbook-plugin-search/search.css">
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
<link rel="stylesheet" href="../gitbook/gitbook-plugin-fontsettings/website.css">
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
<meta name="HandheldFriendly" content="true"/>
|
53
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
54
|
+
<meta name="apple-mobile-web-app-capable" content="yes">
|
55
|
+
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
56
|
+
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../gitbook/images/apple-touch-icon-precomposed-152.png">
|
57
|
+
<link rel="shortcut icon" href="../gitbook/images/favicon.ico" type="image/x-icon">
|
58
|
+
|
59
|
+
|
60
|
+
<link rel="next" href="middleware.html" />
|
61
|
+
|
62
|
+
|
63
|
+
<link rel="prev" href="component.html" />
|
64
|
+
|
65
|
+
|
66
|
+
</head>
|
67
|
+
<body>
|
68
|
+
|
69
|
+
<div class="book">
|
70
|
+
<div class="book-summary">
|
71
|
+
|
72
|
+
|
73
|
+
<div id="book-search-input" role="search">
|
74
|
+
<input type="text" placeholder="Type to search" />
|
75
|
+
</div>
|
76
|
+
|
77
|
+
|
78
|
+
<nav role="navigation">
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
<ul class="summary">
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
<li class="chapter " data-level="1.1" data-path="../">
|
93
|
+
|
94
|
+
<a href="../">
|
95
|
+
|
96
|
+
|
97
|
+
Introduction
|
98
|
+
|
99
|
+
</a>
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
</li>
|
104
|
+
|
105
|
+
<li class="chapter " data-level="1.2" data-path="../guides/tutorial.html">
|
106
|
+
|
107
|
+
<a href="../guides/tutorial.html">
|
108
|
+
|
109
|
+
|
110
|
+
Getting Started
|
111
|
+
|
112
|
+
</a>
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
</li>
|
117
|
+
|
118
|
+
<li class="chapter " data-level="1.3" data-path="../guides/install.html">
|
119
|
+
|
120
|
+
<a href="../guides/install.html">
|
121
|
+
|
122
|
+
|
123
|
+
Install
|
124
|
+
|
125
|
+
</a>
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
</li>
|
130
|
+
|
131
|
+
<li class="chapter " data-level="1.4" >
|
132
|
+
|
133
|
+
<span>
|
134
|
+
|
135
|
+
|
136
|
+
API
|
137
|
+
|
138
|
+
</span>
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
<ul class="articles">
|
143
|
+
|
144
|
+
|
145
|
+
<li class="chapter " data-level="1.4.1" data-path="app.html">
|
146
|
+
|
147
|
+
<a href="app.html">
|
148
|
+
|
149
|
+
|
150
|
+
Ovto::App
|
151
|
+
|
152
|
+
</a>
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
</li>
|
157
|
+
|
158
|
+
<li class="chapter " data-level="1.4.2" data-path="state.html">
|
159
|
+
|
160
|
+
<a href="state.html">
|
161
|
+
|
162
|
+
|
163
|
+
Ovto::State
|
164
|
+
|
165
|
+
</a>
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
</li>
|
170
|
+
|
171
|
+
<li class="chapter " data-level="1.4.3" data-path="actions.html">
|
172
|
+
|
173
|
+
<a href="actions.html">
|
174
|
+
|
175
|
+
|
176
|
+
Ovto::Actions
|
177
|
+
|
178
|
+
</a>
|
179
|
+
|
180
|
+
|
181
|
+
|
182
|
+
</li>
|
183
|
+
|
184
|
+
<li class="chapter " data-level="1.4.4" data-path="component.html">
|
185
|
+
|
186
|
+
<a href="component.html">
|
187
|
+
|
188
|
+
|
189
|
+
Ovto::Component
|
190
|
+
|
191
|
+
</a>
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
</li>
|
196
|
+
|
197
|
+
<li class="chapter active" data-level="1.4.5" data-path="pure_component.html">
|
198
|
+
|
199
|
+
<a href="pure_component.html">
|
200
|
+
|
201
|
+
|
202
|
+
Ovto::PureComponent
|
203
|
+
|
204
|
+
</a>
|
205
|
+
|
206
|
+
|
207
|
+
|
208
|
+
</li>
|
209
|
+
|
210
|
+
<li class="chapter " data-level="1.4.6" data-path="middleware.html">
|
211
|
+
|
212
|
+
<a href="middleware.html">
|
213
|
+
|
214
|
+
|
215
|
+
Ovto::Middleware
|
216
|
+
|
217
|
+
</a>
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
</li>
|
222
|
+
|
223
|
+
<li class="chapter " data-level="1.4.7" data-path="fetch.html">
|
224
|
+
|
225
|
+
<a href="fetch.html">
|
226
|
+
|
227
|
+
|
228
|
+
Ovto.fetch
|
229
|
+
|
230
|
+
</a>
|
231
|
+
|
232
|
+
|
233
|
+
|
234
|
+
</li>
|
235
|
+
|
236
|
+
|
237
|
+
</ul>
|
238
|
+
|
239
|
+
</li>
|
240
|
+
|
241
|
+
<li class="chapter " data-level="1.5" >
|
242
|
+
|
243
|
+
<span>
|
244
|
+
|
245
|
+
|
246
|
+
Guides
|
247
|
+
|
248
|
+
</span>
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
<ul class="articles">
|
253
|
+
|
254
|
+
|
255
|
+
<li class="chapter " data-level="1.5.1" data-path="../guides/debugging.html">
|
256
|
+
|
257
|
+
<a href="../guides/debugging.html">
|
258
|
+
|
259
|
+
|
260
|
+
Debugging
|
261
|
+
|
262
|
+
</a>
|
263
|
+
|
264
|
+
|
265
|
+
|
266
|
+
</li>
|
267
|
+
|
268
|
+
<li class="chapter " data-level="1.5.2" data-path="../guides/development.html">
|
269
|
+
|
270
|
+
<a href="../guides/development.html">
|
271
|
+
|
272
|
+
|
273
|
+
Development
|
274
|
+
|
275
|
+
</a>
|
276
|
+
|
277
|
+
|
278
|
+
|
279
|
+
</li>
|
280
|
+
|
281
|
+
|
282
|
+
</ul>
|
283
|
+
|
284
|
+
</li>
|
285
|
+
|
286
|
+
|
287
|
+
|
288
|
+
|
289
|
+
<li class="divider"></li>
|
290
|
+
|
291
|
+
<li>
|
292
|
+
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
|
293
|
+
Published with GitBook
|
294
|
+
</a>
|
295
|
+
</li>
|
296
|
+
</ul>
|
297
|
+
|
298
|
+
|
299
|
+
</nav>
|
300
|
+
|
301
|
+
|
302
|
+
</div>
|
303
|
+
|
304
|
+
<div class="book-body">
|
305
|
+
|
306
|
+
<div class="body-inner">
|
307
|
+
|
308
|
+
|
309
|
+
|
310
|
+
<div class="book-header" role="navigation">
|
311
|
+
|
312
|
+
|
313
|
+
<!-- Title -->
|
314
|
+
<h1>
|
315
|
+
<i class="fa fa-circle-o-notch fa-spin"></i>
|
316
|
+
<a href=".." >Ovto::PureComponent</a>
|
317
|
+
</h1>
|
318
|
+
</div>
|
319
|
+
|
320
|
+
|
321
|
+
|
322
|
+
|
323
|
+
<div class="page-wrapper" tabindex="-1" role="main">
|
324
|
+
<div class="page-inner">
|
325
|
+
|
326
|
+
<div id="book-search-results">
|
327
|
+
<div class="search-noresults">
|
328
|
+
|
329
|
+
<section class="normal markdown-section">
|
330
|
+
|
331
|
+
<h1 id="ovtopurecomponent">Ovto::PureComponent</h1>
|
332
|
+
<p>It almost the same as <code>Ovto::Component</code>, but it caches the <code>render</code> method calling with arguments of the method.</p>
|
333
|
+
<h2 id="when-to-use-purecomponent">When to use PureComponent?</h2>
|
334
|
+
<p>Use it when your app is slow and need more speed.</p>
|
335
|
+
<h2 id="cache-strategy">Cache strategy</h2>
|
336
|
+
<p>It compares <code>render</code> method arguments and the previous arguments.</p>
|
337
|
+
<pre><code class="lang-rb"><span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">render</span></span>
|
338
|
+
o <span class="hljs-string">'div'</span> <span class="hljs-keyword">do</span>
|
339
|
+
o Pure, <span class="hljs-symbol">foo:</span> state.foo
|
340
|
+
o NotPure <span class="hljs-symbol">bar:</span> state.bar
|
341
|
+
<span class="hljs-keyword">end</span>
|
342
|
+
<span class="hljs-keyword">end</span>
|
343
|
+
</code></pre>
|
344
|
+
<p>In this case, <code>NotPure</code> component's render method is called even if <code>state.foo</code> is changed.
|
345
|
+
Whereas <code>Pure</code> component's render method is called only if <code>state.foo</code> is changed.</p>
|
346
|
+
<h2 id="state">State</h2>
|
347
|
+
<p><code>state</code> method is not available in <code>PureComponent</code>, because <code>PureComponent</code> does not treat state as the cache key.
|
348
|
+
If you'd like to use state in <code>PureComponent</code>, pass the state from the parent component.</p>
|
349
|
+
|
350
|
+
|
351
|
+
</section>
|
352
|
+
|
353
|
+
</div>
|
354
|
+
<div class="search-results">
|
355
|
+
<div class="has-results">
|
356
|
+
|
357
|
+
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
|
358
|
+
<ul class="search-results-list"></ul>
|
359
|
+
|
360
|
+
</div>
|
361
|
+
<div class="no-results">
|
362
|
+
|
363
|
+
<h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1>
|
364
|
+
|
365
|
+
</div>
|
366
|
+
</div>
|
367
|
+
</div>
|
368
|
+
|
369
|
+
</div>
|
370
|
+
</div>
|
371
|
+
|
372
|
+
</div>
|
373
|
+
|
374
|
+
|
375
|
+
|
376
|
+
<a href="component.html" class="navigation navigation-prev " aria-label="Previous page: Ovto::Component">
|
377
|
+
<i class="fa fa-angle-left"></i>
|
378
|
+
</a>
|
379
|
+
|
380
|
+
|
381
|
+
<a href="middleware.html" class="navigation navigation-next " aria-label="Next page: Ovto::Middleware">
|
382
|
+
<i class="fa fa-angle-right"></i>
|
383
|
+
</a>
|
384
|
+
|
385
|
+
|
386
|
+
|
387
|
+
</div>
|
388
|
+
|
389
|
+
<script>
|
390
|
+
var gitbook = gitbook || [];
|
391
|
+
gitbook.push(function() {
|
392
|
+
gitbook.page.hasChanged({"page":{"title":"Ovto::PureComponent","level":"1.4.5","depth":2,"next":{"title":"Ovto::Middleware","level":"1.4.6","depth":2,"path":"api/middleware.md","ref":"api/middleware.md","articles":[]},"previous":{"title":"Ovto::Component","level":"1.4.4","depth":2,"path":"api/component.md","ref":"api/component.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":[],"pluginsConfig":{"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"api/pure_component.md","mtime":"2020-02-10T04:33:15.000Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2020-02-29T14:26:27.632Z"},"basePath":"..","book":{"language":""}});
|
393
|
+
});
|
394
|
+
</script>
|
395
|
+
</div>
|
396
|
+
|
397
|
+
|
398
|
+
<script src="../gitbook/gitbook.js"></script>
|
399
|
+
<script src="../gitbook/theme.js"></script>
|
400
|
+
|
401
|
+
|
402
|
+
<script src="../gitbook/gitbook-plugin-search/search-engine.js"></script>
|
403
|
+
|
404
|
+
|
405
|
+
|
406
|
+
<script src="../gitbook/gitbook-plugin-search/search.js"></script>
|
407
|
+
|
408
|
+
|
409
|
+
|
410
|
+
<script src="../gitbook/gitbook-plugin-lunr/lunr.min.js"></script>
|
411
|
+
|
412
|
+
|
413
|
+
|
414
|
+
<script src="../gitbook/gitbook-plugin-lunr/search-lunr.js"></script>
|
415
|
+
|
416
|
+
|
417
|
+
|
418
|
+
<script src="../gitbook/gitbook-plugin-sharing/buttons.js"></script>
|
419
|
+
|
420
|
+
|
421
|
+
|
422
|
+
<script src="../gitbook/gitbook-plugin-fontsettings/fontsettings.js"></script>
|
423
|
+
|
424
|
+
|
425
|
+
|
426
|
+
</body>
|
427
|
+
</html>
|
428
|
+
|
data/docs/api/state.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<title>Ovto::State · GitBook</title>
|
8
8
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
9
9
|
<meta name="description" content="">
|
10
|
-
<meta name="generator" content="GitBook 3.2.
|
10
|
+
<meta name="generator" content="GitBook 3.2.2">
|
11
11
|
|
12
12
|
|
13
13
|
|
@@ -102,12 +102,12 @@
|
|
102
102
|
|
103
103
|
</li>
|
104
104
|
|
105
|
-
<li class="chapter " data-level="1.2" data-path="../">
|
105
|
+
<li class="chapter " data-level="1.2" data-path="../guides/tutorial.html">
|
106
106
|
|
107
|
-
<a href="../">
|
107
|
+
<a href="../guides/tutorial.html">
|
108
108
|
|
109
109
|
|
110
|
-
|
110
|
+
Getting Started
|
111
111
|
|
112
112
|
</a>
|
113
113
|
|
@@ -115,12 +115,12 @@
|
|
115
115
|
|
116
116
|
</li>
|
117
117
|
|
118
|
-
<li class="chapter " data-level="1.3" data-path="../guides/
|
118
|
+
<li class="chapter " data-level="1.3" data-path="../guides/install.html">
|
119
119
|
|
120
|
-
<a href="../guides/
|
120
|
+
<a href="../guides/install.html">
|
121
121
|
|
122
122
|
|
123
|
-
|
123
|
+
Install
|
124
124
|
|
125
125
|
</a>
|
126
126
|
|
@@ -194,7 +194,33 @@
|
|
194
194
|
|
195
195
|
</li>
|
196
196
|
|
197
|
-
<li class="chapter " data-level="1.4.5" data-path="
|
197
|
+
<li class="chapter " data-level="1.4.5" data-path="pure_component.html">
|
198
|
+
|
199
|
+
<a href="pure_component.html">
|
200
|
+
|
201
|
+
|
202
|
+
Ovto::PureComponent
|
203
|
+
|
204
|
+
</a>
|
205
|
+
|
206
|
+
|
207
|
+
|
208
|
+
</li>
|
209
|
+
|
210
|
+
<li class="chapter " data-level="1.4.6" data-path="middleware.html">
|
211
|
+
|
212
|
+
<a href="middleware.html">
|
213
|
+
|
214
|
+
|
215
|
+
Ovto::Middleware
|
216
|
+
|
217
|
+
</a>
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
</li>
|
222
|
+
|
223
|
+
<li class="chapter " data-level="1.4.7" data-path="fetch.html">
|
198
224
|
|
199
225
|
<a href="fetch.html">
|
200
226
|
|
@@ -417,7 +443,7 @@ taro_books = Book.of_author(books, <span class="hljs-string">"taro"</s
|
|
417
443
|
<script>
|
418
444
|
var gitbook = gitbook || [];
|
419
445
|
gitbook.push(function() {
|
420
|
-
gitbook.page.hasChanged({"page":{"title":"Ovto::State","level":"1.4.2","depth":2,"next":{"title":"Ovto::Actions","level":"1.4.3","depth":2,"path":"api/actions.md","ref":"api/actions.md","articles":[]},"previous":{"title":"Ovto::App","level":"1.4.1","depth":2,"path":"api/app.md","ref":"api/app.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":[],"pluginsConfig":{"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"api/state.md","mtime":"2018-
|
446
|
+
gitbook.page.hasChanged({"page":{"title":"Ovto::State","level":"1.4.2","depth":2,"next":{"title":"Ovto::Actions","level":"1.4.3","depth":2,"path":"api/actions.md","ref":"api/actions.md","articles":[]},"previous":{"title":"Ovto::App","level":"1.4.1","depth":2,"path":"api/app.md","ref":"api/app.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":[],"pluginsConfig":{"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"api/state.md","mtime":"2018-05-11T14:39:01.000Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2020-02-29T14:26:27.632Z"},"basePath":"..","book":{"language":""}});
|
421
447
|
});
|
422
448
|
</script>
|
423
449
|
</div>
|
@@ -6,15 +6,15 @@
|
|
6
6
|
<title>
|
7
7
|
Top Level Namespace
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.24
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
13
|
-
<link rel="stylesheet" href="css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" />
|
16
16
|
|
17
|
-
<script type="text/javascript"
|
17
|
+
<script type="text/javascript">
|
18
18
|
pathId = "";
|
19
19
|
relpath = '';
|
20
20
|
</script>
|
@@ -82,10 +82,12 @@
|
|
82
82
|
<p class="children">
|
83
83
|
|
84
84
|
|
85
|
-
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Ovto.html" title="Ovto (module)">Ovto</a></span>
|
85
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="MightyInspect.html" title="MightyInspect (module)">MightyInspect</a></span>, <span class='object_link'><a href="Ovto.html" title="Ovto (module)">Ovto</a></span>
|
86
86
|
|
87
87
|
|
88
88
|
|
89
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Array.html" title="Array (class)">Array</a></span>, <span class='object_link'><a href="Hash.html" title="Hash (class)">Hash</a></span>
|
90
|
+
|
89
91
|
|
90
92
|
</p>
|
91
93
|
|
@@ -165,9 +167,9 @@
|
|
165
167
|
</div>
|
166
168
|
|
167
169
|
<div id="footer">
|
168
|
-
Generated on
|
170
|
+
Generated on Sat Feb 29 23:26:32 2020 by
|
169
171
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
170
|
-
0.9.
|
172
|
+
0.9.24 (ruby-2.5.5).
|
171
173
|
</div>
|
172
174
|
|
173
175
|
</div>
|