apes 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +7 -0
  3. data/.rubocop.yml +82 -0
  4. data/.travis-gemfile +15 -0
  5. data/.travis.yml +15 -0
  6. data/.yardopts +1 -0
  7. data/CHANGELOG.md +3 -0
  8. data/Gemfile +22 -0
  9. data/README.md +177 -0
  10. data/Rakefile +44 -0
  11. data/apes.gemspec +34 -0
  12. data/doc/Apes.html +130 -0
  13. data/doc/Apes/Concerns.html +127 -0
  14. data/doc/Apes/Concerns/Errors.html +1089 -0
  15. data/doc/Apes/Concerns/Pagination.html +636 -0
  16. data/doc/Apes/Concerns/Request.html +766 -0
  17. data/doc/Apes/Concerns/Response.html +940 -0
  18. data/doc/Apes/Controller.html +1100 -0
  19. data/doc/Apes/Errors.html +125 -0
  20. data/doc/Apes/Errors/AuthenticationError.html +133 -0
  21. data/doc/Apes/Errors/BadRequestError.html +157 -0
  22. data/doc/Apes/Errors/BaseError.html +320 -0
  23. data/doc/Apes/Errors/InvalidDataError.html +157 -0
  24. data/doc/Apes/Errors/MissingDataError.html +157 -0
  25. data/doc/Apes/Model.html +378 -0
  26. data/doc/Apes/PaginationCursor.html +2138 -0
  27. data/doc/Apes/RuntimeConfiguration.html +909 -0
  28. data/doc/Apes/Serializers.html +125 -0
  29. data/doc/Apes/Serializers/JSON.html +389 -0
  30. data/doc/Apes/Serializers/JWT.html +452 -0
  31. data/doc/Apes/Serializers/List.html +347 -0
  32. data/doc/Apes/UrlsParser.html +1432 -0
  33. data/doc/Apes/Validators.html +125 -0
  34. data/doc/Apes/Validators/BaseValidator.html +278 -0
  35. data/doc/Apes/Validators/BooleanValidator.html +494 -0
  36. data/doc/Apes/Validators/EmailValidator.html +350 -0
  37. data/doc/Apes/Validators/PhoneValidator.html +375 -0
  38. data/doc/Apes/Validators/ReferenceValidator.html +372 -0
  39. data/doc/Apes/Validators/TimestampValidator.html +640 -0
  40. data/doc/Apes/Validators/UuidValidator.html +372 -0
  41. data/doc/Apes/Validators/ZipCodeValidator.html +372 -0
  42. data/doc/Apes/Version.html +189 -0
  43. data/doc/ApplicationController.html +547 -0
  44. data/doc/Concerns.html +128 -0
  45. data/doc/Concerns/ErrorHandling.html +826 -0
  46. data/doc/Concerns/PaginationHandling.html +463 -0
  47. data/doc/Concerns/RequestHandling.html +512 -0
  48. data/doc/Concerns/ResponseHandling.html +579 -0
  49. data/doc/Errors.html +126 -0
  50. data/doc/Errors/AuthenticationError.html +123 -0
  51. data/doc/Errors/BadRequestError.html +147 -0
  52. data/doc/Errors/BaseError.html +289 -0
  53. data/doc/Errors/InvalidDataError.html +147 -0
  54. data/doc/Errors/MissingDataError.html +147 -0
  55. data/doc/Model.html +315 -0
  56. data/doc/PaginationCursor.html +764 -0
  57. data/doc/Serializers.html +126 -0
  58. data/doc/Serializers/JSON.html +253 -0
  59. data/doc/Serializers/JWT.html +253 -0
  60. data/doc/Serializers/List.html +245 -0
  61. data/doc/Validators.html +126 -0
  62. data/doc/Validators/BaseValidator.html +209 -0
  63. data/doc/Validators/BooleanValidator.html +391 -0
  64. data/doc/Validators/EmailValidator.html +298 -0
  65. data/doc/Validators/PhoneValidator.html +313 -0
  66. data/doc/Validators/ReferenceValidator.html +284 -0
  67. data/doc/Validators/TimestampValidator.html +476 -0
  68. data/doc/Validators/UuidValidator.html +310 -0
  69. data/doc/Validators/ZipCodeValidator.html +310 -0
  70. data/doc/_index.html +435 -0
  71. data/doc/class_list.html +58 -0
  72. data/doc/css/common.css +1 -0
  73. data/doc/css/full_list.css +57 -0
  74. data/doc/css/style.css +339 -0
  75. data/doc/file.README.html +252 -0
  76. data/doc/file_list.html +60 -0
  77. data/doc/frames.html +26 -0
  78. data/doc/index.html +252 -0
  79. data/doc/js/app.js +219 -0
  80. data/doc/js/full_list.js +181 -0
  81. data/doc/js/jquery.js +4 -0
  82. data/doc/method_list.html +615 -0
  83. data/doc/top-level-namespace.html +112 -0
  84. data/lib/apes.rb +40 -0
  85. data/lib/apes/concerns/errors.rb +111 -0
  86. data/lib/apes/concerns/pagination.rb +81 -0
  87. data/lib/apes/concerns/request.rb +237 -0
  88. data/lib/apes/concerns/response.rb +74 -0
  89. data/lib/apes/controller.rb +77 -0
  90. data/lib/apes/errors.rb +38 -0
  91. data/lib/apes/model.rb +94 -0
  92. data/lib/apes/pagination_cursor.rb +152 -0
  93. data/lib/apes/runtime_configuration.rb +80 -0
  94. data/lib/apes/serializers.rb +88 -0
  95. data/lib/apes/urls_parser.rb +233 -0
  96. data/lib/apes/validators.rb +234 -0
  97. data/lib/apes/version.rb +24 -0
  98. data/spec/apes/concerns/errors_spec.rb +141 -0
  99. data/spec/apes/concerns/pagination_spec.rb +114 -0
  100. data/spec/apes/concerns/request_spec.rb +244 -0
  101. data/spec/apes/concerns/response_spec.rb +79 -0
  102. data/spec/apes/controller_spec.rb +54 -0
  103. data/spec/apes/errors_spec.rb +14 -0
  104. data/spec/apes/models_spec.rb +148 -0
  105. data/spec/apes/pagination_cursor_spec.rb +113 -0
  106. data/spec/apes/runtime_configuration_spec.rb +100 -0
  107. data/spec/apes/serializers_spec.rb +70 -0
  108. data/spec/apes/urls_parser_spec.rb +150 -0
  109. data/spec/apes/validators_spec.rb +237 -0
  110. data/spec/spec_helper.rb +30 -0
  111. data/views/_included.json.jbuilder +9 -0
  112. data/views/_pagination.json.jbuilder +9 -0
  113. data/views/collection.json.jbuilder +4 -0
  114. data/views/errors/400.json.jbuilder +9 -0
  115. data/views/errors/403.json.jbuilder +7 -0
  116. data/views/errors/404.json.jbuilder +6 -0
  117. data/views/errors/422.json.jbuilder +19 -0
  118. data/views/errors/500.json.jbuilder +12 -0
  119. data/views/errors/501.json.jbuilder +7 -0
  120. data/views/layouts/general.json.jbuilder +36 -0
  121. data/views/object.json.jbuilder +4 -0
  122. metadata +262 -0
@@ -0,0 +1,435 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Documentation by YARD 0.8.7.6
8
+
9
+ </title>
10
+
11
+ <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
12
+
13
+ <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
14
+
15
+ <script type="text/javascript" charset="utf-8">
16
+ hasFrames = window.top.frames.main ? true : false;
17
+ relpath = '';
18
+ framesUrl = "frames.html#!_index.html";
19
+ </script>
20
+
21
+
22
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
23
+
24
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
25
+
26
+
27
+ </head>
28
+ <body>
29
+ <div id="header">
30
+ <div id="menu">
31
+
32
+
33
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
34
+ </div>
35
+
36
+ <div id="search">
37
+
38
+ <a class="full_list_link" id="class_list_link"
39
+ href="class_list.html">
40
+ Class List
41
+ </a>
42
+
43
+ <a class="full_list_link" id="method_list_link"
44
+ href="method_list.html">
45
+ Method List
46
+ </a>
47
+
48
+ <a class="full_list_link" id="file_list_link"
49
+ href="file_list.html">
50
+ File List
51
+ </a>
52
+
53
+ </div>
54
+ <div class="clear"></div>
55
+ </div>
56
+
57
+ <iframe id="search_frame"></iframe>
58
+
59
+ <div id="content"><h1 class="noborder title">Documentation by YARD 0.8.7.6</h1>
60
+ <div id="listing">
61
+ <h1 class="alphaindex">Alphabetic Index</h1>
62
+
63
+ <h2>File Listing</h2>
64
+ <ul id="files" class="index_inline_list">
65
+
66
+
67
+ <li class="r1"><a href="index.html" title="README">README</a></li>
68
+
69
+
70
+ </ul>
71
+
72
+ <div class="clear"></div>
73
+ <h2>Namespace Listing A-Z</h2>
74
+
75
+
76
+
77
+
78
+ <table>
79
+ <tr>
80
+ <td valign='top' width="33%">
81
+
82
+
83
+ <ul id="alpha_A" class="alpha">
84
+ <li class="letter">A</li>
85
+ <ul>
86
+
87
+ <li>
88
+ <span class='object_link'><a href="Apes.html" title="Apes (module)">Apes</a></span>
89
+
90
+ </li>
91
+
92
+ <li>
93
+ <span class='object_link'><a href="Apes/Errors/AuthenticationError.html" title="Apes::Errors::AuthenticationError (class)">AuthenticationError</a></span>
94
+
95
+ <small>(Apes::Errors)</small>
96
+
97
+ </li>
98
+
99
+ </ul>
100
+ </ul>
101
+
102
+
103
+ <ul id="alpha_B" class="alpha">
104
+ <li class="letter">B</li>
105
+ <ul>
106
+
107
+ <li>
108
+ <span class='object_link'><a href="Apes/Errors/BadRequestError.html" title="Apes::Errors::BadRequestError (class)">BadRequestError</a></span>
109
+
110
+ <small>(Apes::Errors)</small>
111
+
112
+ </li>
113
+
114
+ <li>
115
+ <span class='object_link'><a href="Apes/Errors/BaseError.html" title="Apes::Errors::BaseError (class)">BaseError</a></span>
116
+
117
+ <small>(Apes::Errors)</small>
118
+
119
+ </li>
120
+
121
+ <li>
122
+ <span class='object_link'><a href="Apes/Validators/BaseValidator.html" title="Apes::Validators::BaseValidator (class)">BaseValidator</a></span>
123
+
124
+ <small>(Apes::Validators)</small>
125
+
126
+ </li>
127
+
128
+ <li>
129
+ <span class='object_link'><a href="Apes/Validators/BooleanValidator.html" title="Apes::Validators::BooleanValidator (class)">BooleanValidator</a></span>
130
+
131
+ <small>(Apes::Validators)</small>
132
+
133
+ </li>
134
+
135
+ </ul>
136
+ </ul>
137
+
138
+
139
+ <ul id="alpha_C" class="alpha">
140
+ <li class="letter">C</li>
141
+ <ul>
142
+
143
+ <li>
144
+ <span class='object_link'><a href="Apes/Concerns.html" title="Apes::Concerns (module)">Concerns</a></span>
145
+
146
+ <small>(Apes)</small>
147
+
148
+ </li>
149
+
150
+ <li>
151
+ <span class='object_link'><a href="Apes/Controller.html" title="Apes::Controller (class)">Controller</a></span>
152
+
153
+ <small>(Apes)</small>
154
+
155
+ </li>
156
+
157
+ </ul>
158
+ </ul>
159
+
160
+
161
+ <ul id="alpha_E" class="alpha">
162
+ <li class="letter">E</li>
163
+ <ul>
164
+
165
+ <li>
166
+ <span class='object_link'><a href="Apes/Validators/EmailValidator.html" title="Apes::Validators::EmailValidator (class)">EmailValidator</a></span>
167
+
168
+ <small>(Apes::Validators)</small>
169
+
170
+ </li>
171
+
172
+ <li>
173
+ <span class='object_link'><a href="Apes/Errors.html" title="Apes::Errors (module)">Errors</a></span>
174
+
175
+ <small>(Apes)</small>
176
+
177
+ </li>
178
+
179
+ <li>
180
+ <span class='object_link'><a href="Apes/Concerns/Errors.html" title="Apes::Concerns::Errors (module)">Errors</a></span>
181
+
182
+ <small>(Apes::Concerns)</small>
183
+
184
+ </li>
185
+
186
+ </ul>
187
+ </ul>
188
+
189
+
190
+ <ul id="alpha_I" class="alpha">
191
+ <li class="letter">I</li>
192
+ <ul>
193
+
194
+ <li>
195
+ <span class='object_link'><a href="Apes/Errors/InvalidDataError.html" title="Apes::Errors::InvalidDataError (class)">InvalidDataError</a></span>
196
+
197
+ <small>(Apes::Errors)</small>
198
+
199
+ </li>
200
+
201
+ </ul>
202
+ </ul>
203
+
204
+
205
+ <ul id="alpha_J" class="alpha">
206
+ <li class="letter">J</li>
207
+ <ul>
208
+
209
+ <li>
210
+ <span class='object_link'><a href="Apes/Serializers/JSON.html" title="Apes::Serializers::JSON (class)">JSON</a></span>
211
+
212
+ <small>(Apes::Serializers)</small>
213
+
214
+ </li>
215
+
216
+ <li>
217
+ <span class='object_link'><a href="Apes/Serializers/JWT.html" title="Apes::Serializers::JWT (class)">JWT</a></span>
218
+
219
+ <small>(Apes::Serializers)</small>
220
+
221
+ </li>
222
+
223
+ </ul>
224
+ </ul>
225
+
226
+
227
+ <ul id="alpha_L" class="alpha">
228
+ <li class="letter">L</li>
229
+ <ul>
230
+
231
+ <li>
232
+ <span class='object_link'><a href="Apes/Serializers/List.html" title="Apes::Serializers::List (class)">List</a></span>
233
+
234
+ <small>(Apes::Serializers)</small>
235
+
236
+ </li>
237
+
238
+ </ul>
239
+ </ul>
240
+
241
+
242
+ </td><td valign='top' width="33%">
243
+
244
+
245
+ <ul id="alpha_M" class="alpha">
246
+ <li class="letter">M</li>
247
+ <ul>
248
+
249
+ <li>
250
+ <span class='object_link'><a href="Apes/Errors/MissingDataError.html" title="Apes::Errors::MissingDataError (class)">MissingDataError</a></span>
251
+
252
+ <small>(Apes::Errors)</small>
253
+
254
+ </li>
255
+
256
+ <li>
257
+ <span class='object_link'><a href="Apes/Model.html" title="Apes::Model (module)">Model</a></span>
258
+
259
+ <small>(Apes)</small>
260
+
261
+ </li>
262
+
263
+ </ul>
264
+ </ul>
265
+
266
+
267
+ <ul id="alpha_P" class="alpha">
268
+ <li class="letter">P</li>
269
+ <ul>
270
+
271
+ <li>
272
+ <span class='object_link'><a href="Apes/Concerns/Pagination.html" title="Apes::Concerns::Pagination (module)">Pagination</a></span>
273
+
274
+ <small>(Apes::Concerns)</small>
275
+
276
+ </li>
277
+
278
+ <li>
279
+ <span class='object_link'><a href="Apes/PaginationCursor.html" title="Apes::PaginationCursor (class)">PaginationCursor</a></span>
280
+
281
+ <small>(Apes)</small>
282
+
283
+ </li>
284
+
285
+ <li>
286
+ <span class='object_link'><a href="Apes/Validators/PhoneValidator.html" title="Apes::Validators::PhoneValidator (class)">PhoneValidator</a></span>
287
+
288
+ <small>(Apes::Validators)</small>
289
+
290
+ </li>
291
+
292
+ </ul>
293
+ </ul>
294
+
295
+
296
+ <ul id="alpha_R" class="alpha">
297
+ <li class="letter">R</li>
298
+ <ul>
299
+
300
+ <li>
301
+ <span class='object_link'><a href="Apes/Validators/ReferenceValidator.html" title="Apes::Validators::ReferenceValidator (class)">ReferenceValidator</a></span>
302
+
303
+ <small>(Apes::Validators)</small>
304
+
305
+ </li>
306
+
307
+ <li>
308
+ <span class='object_link'><a href="Apes/Concerns/Request.html" title="Apes::Concerns::Request (module)">Request</a></span>
309
+
310
+ <small>(Apes::Concerns)</small>
311
+
312
+ </li>
313
+
314
+ <li>
315
+ <span class='object_link'><a href="Apes/Concerns/Response.html" title="Apes::Concerns::Response (module)">Response</a></span>
316
+
317
+ <small>(Apes::Concerns)</small>
318
+
319
+ </li>
320
+
321
+ <li>
322
+ <span class='object_link'><a href="Apes/RuntimeConfiguration.html" title="Apes::RuntimeConfiguration (class)">RuntimeConfiguration</a></span>
323
+
324
+ <small>(Apes)</small>
325
+
326
+ </li>
327
+
328
+ </ul>
329
+ </ul>
330
+
331
+
332
+ <ul id="alpha_S" class="alpha">
333
+ <li class="letter">S</li>
334
+ <ul>
335
+
336
+ <li>
337
+ <span class='object_link'><a href="Apes/Serializers.html" title="Apes::Serializers (module)">Serializers</a></span>
338
+
339
+ <small>(Apes)</small>
340
+
341
+ </li>
342
+
343
+ </ul>
344
+ </ul>
345
+
346
+
347
+ <ul id="alpha_T" class="alpha">
348
+ <li class="letter">T</li>
349
+ <ul>
350
+
351
+ <li>
352
+ <span class='object_link'><a href="Apes/Validators/TimestampValidator.html" title="Apes::Validators::TimestampValidator (class)">TimestampValidator</a></span>
353
+
354
+ <small>(Apes::Validators)</small>
355
+
356
+ </li>
357
+
358
+ </ul>
359
+ </ul>
360
+
361
+
362
+ <ul id="alpha_U" class="alpha">
363
+ <li class="letter">U</li>
364
+ <ul>
365
+
366
+ <li>
367
+ <span class='object_link'><a href="Apes/UrlsParser.html" title="Apes::UrlsParser (class)">UrlsParser</a></span>
368
+
369
+ <small>(Apes)</small>
370
+
371
+ </li>
372
+
373
+ <li>
374
+ <span class='object_link'><a href="Apes/Validators/UuidValidator.html" title="Apes::Validators::UuidValidator (class)">UuidValidator</a></span>
375
+
376
+ <small>(Apes::Validators)</small>
377
+
378
+ </li>
379
+
380
+ </ul>
381
+ </ul>
382
+
383
+
384
+ <ul id="alpha_V" class="alpha">
385
+ <li class="letter">V</li>
386
+ <ul>
387
+
388
+ <li>
389
+ <span class='object_link'><a href="Apes/Validators.html" title="Apes::Validators (module)">Validators</a></span>
390
+
391
+ <small>(Apes)</small>
392
+
393
+ </li>
394
+
395
+ <li>
396
+ <span class='object_link'><a href="Apes/Version.html" title="Apes::Version (module)">Version</a></span>
397
+
398
+ <small>(Apes)</small>
399
+
400
+ </li>
401
+
402
+ </ul>
403
+ </ul>
404
+
405
+
406
+ <ul id="alpha_Z" class="alpha">
407
+ <li class="letter">Z</li>
408
+ <ul>
409
+
410
+ <li>
411
+ <span class='object_link'><a href="Apes/Validators/ZipCodeValidator.html" title="Apes::Validators::ZipCodeValidator (class)">ZipCodeValidator</a></span>
412
+
413
+ <small>(Apes::Validators)</small>
414
+
415
+ </li>
416
+
417
+ </ul>
418
+ </ul>
419
+
420
+ </td>
421
+ </tr>
422
+ </table>
423
+
424
+ </div>
425
+
426
+ </div>
427
+
428
+ <div id="footer">
429
+ Generated on Sat Jun 4 12:41:53 2016 by
430
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
431
+ 0.8.7.6 (ruby-2.3.0).
432
+ </div>
433
+
434
+ </body>
435
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html>
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+
7
+ <link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
8
+
9
+ <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
10
+
11
+
12
+
13
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
16
+
17
+
18
+ <title>Class List</title>
19
+ <base id="base_target" target="_parent" />
20
+ </head>
21
+ <body>
22
+ <script type="text/javascript" charset="utf-8">
23
+ var hasFrames = false;
24
+ try {
25
+ hasFrames = window.top.frames.main ? true : false;
26
+ } catch (e) { }
27
+ if (hasFrames) {
28
+ document.getElementById('base_target').target = 'main';
29
+ document.body.className = 'frames';
30
+ }
31
+ </script>
32
+ <div id="content">
33
+ <h1 id="full_list_header">Class List</h1>
34
+ <div id="nav">
35
+
36
+ <span><a target="_self" href="class_list.html">
37
+ Classes
38
+ </a></span>
39
+
40
+ <span><a target="_self" href="method_list.html">
41
+ Methods
42
+ </a></span>
43
+
44
+ <span><a target="_self" href="file_list.html">
45
+ Files
46
+ </a></span>
47
+
48
+ </div>
49
+ <div id="search">Search: <input type="text" /></div>
50
+
51
+ <ul id="full_list" class="class">
52
+ <li><span class='object_link'><a href="top-level-namespace.html" title="Top Level Namespace (root)">Top Level Namespace</a></span></li>
53
+ <li><a class='toggle'></a> <span class='object_link'><a href="Apes.html" title="Apes (module)">Apes</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><a class='toggle'></a> <span class='object_link'><a href="Apes/Concerns.html" title="Apes::Concerns (module)">Concerns</a></span><small class='search_info'>Apes</small></li><ul><li><span class='object_link'><a href="Apes/Concerns/Errors.html" title="Apes::Concerns::Errors (module)">Errors</a></span><small class='search_info'>Apes::Concerns</small></li><li><span class='object_link'><a href="Apes/Concerns/Pagination.html" title="Apes::Concerns::Pagination (module)">Pagination</a></span><small class='search_info'>Apes::Concerns</small></li><li><span class='object_link'><a href="Apes/Concerns/Request.html" title="Apes::Concerns::Request (module)">Request</a></span><small class='search_info'>Apes::Concerns</small></li><li><span class='object_link'><a href="Apes/Concerns/Response.html" title="Apes::Concerns::Response (module)">Response</a></span><small class='search_info'>Apes::Concerns</small></li></ul><li><span class='object_link'><a href="Apes/Controller.html" title="Apes::Controller (class)">Controller</a></span> &lt; API<small class='search_info'>Apes</small></li><li><a class='toggle'></a> <span class='object_link'><a href="Apes/Errors.html" title="Apes::Errors (module)">Errors</a></span><small class='search_info'>Apes</small></li><ul><li><span class='object_link'><a href="Apes/Errors/AuthenticationError.html" title="Apes::Errors::AuthenticationError (class)">AuthenticationError</a></span> &lt; RuntimeError<small class='search_info'>Apes::Errors</small></li><li><span class='object_link'><a href="Apes/Errors/BadRequestError.html" title="Apes::Errors::BadRequestError (class)">BadRequestError</a></span> &lt; BaseError<small class='search_info'>Apes::Errors</small></li><li><span class='object_link'><a href="Apes/Errors/BaseError.html" title="Apes::Errors::BaseError (class)">BaseError</a></span> &lt; RuntimeError<small class='search_info'>Apes::Errors</small></li><li><span class='object_link'><a href="Apes/Errors/InvalidDataError.html" title="Apes::Errors::InvalidDataError (class)">InvalidDataError</a></span> &lt; BaseError<small class='search_info'>Apes::Errors</small></li><li><span class='object_link'><a href="Apes/Errors/MissingDataError.html" title="Apes::Errors::MissingDataError (class)">MissingDataError</a></span> &lt; BaseError<small class='search_info'>Apes::Errors</small></li></ul><li><span class='object_link'><a href="Apes/Model.html" title="Apes::Model (module)">Model</a></span><small class='search_info'>Apes</small></li><li><span class='object_link'><a href="Apes/PaginationCursor.html" title="Apes::PaginationCursor (class)">PaginationCursor</a></span> &lt; Object<small class='search_info'>Apes</small></li><li><span class='object_link'><a href="Apes/RuntimeConfiguration.html" title="Apes::RuntimeConfiguration (class)">RuntimeConfiguration</a></span> &lt; Object<small class='search_info'>Apes</small></li><li><a class='toggle'></a> <span class='object_link'><a href="Apes/Serializers.html" title="Apes::Serializers (module)">Serializers</a></span><small class='search_info'>Apes</small></li><ul><li><span class='object_link'><a href="Apes/Serializers/JSON.html" title="Apes::Serializers::JSON (class)">JSON</a></span> &lt; Object<small class='search_info'>Apes::Serializers</small></li><li><span class='object_link'><a href="Apes/Serializers/JWT.html" title="Apes::Serializers::JWT (class)">JWT</a></span> &lt; Object<small class='search_info'>Apes::Serializers</small></li><li><span class='object_link'><a href="Apes/Serializers/List.html" title="Apes::Serializers::List (class)">List</a></span> &lt; Object<small class='search_info'>Apes::Serializers</small></li></ul><li><span class='object_link'><a href="Apes/UrlsParser.html" title="Apes::UrlsParser (class)">UrlsParser</a></span> &lt; Object<small class='search_info'>Apes</small></li><li><a class='toggle'></a> <span class='object_link'><a href="Apes/Validators.html" title="Apes::Validators (module)">Validators</a></span><small class='search_info'>Apes</small></li><ul><li><span class='object_link'><a href="Apes/Validators/BaseValidator.html" title="Apes::Validators::BaseValidator (class)">BaseValidator</a></span> &lt; EachValidator<small class='search_info'>Apes::Validators</small></li><li><span class='object_link'><a href="Apes/Validators/BooleanValidator.html" title="Apes::Validators::BooleanValidator (class)">BooleanValidator</a></span> &lt; BaseValidator<small class='search_info'>Apes::Validators</small></li><li><span class='object_link'><a href="Apes/Validators/EmailValidator.html" title="Apes::Validators::EmailValidator (class)">EmailValidator</a></span> &lt; BaseValidator<small class='search_info'>Apes::Validators</small></li><li><span class='object_link'><a href="Apes/Validators/PhoneValidator.html" title="Apes::Validators::PhoneValidator (class)">PhoneValidator</a></span> &lt; BaseValidator<small class='search_info'>Apes::Validators</small></li><li><span class='object_link'><a href="Apes/Validators/ReferenceValidator.html" title="Apes::Validators::ReferenceValidator (class)">ReferenceValidator</a></span> &lt; BaseValidator<small class='search_info'>Apes::Validators</small></li><li><span class='object_link'><a href="Apes/Validators/TimestampValidator.html" title="Apes::Validators::TimestampValidator (class)">TimestampValidator</a></span> &lt; BaseValidator<small class='search_info'>Apes::Validators</small></li><li><span class='object_link'><a href="Apes/Validators/UuidValidator.html" title="Apes::Validators::UuidValidator (class)">UuidValidator</a></span> &lt; BaseValidator<small class='search_info'>Apes::Validators</small></li><li><span class='object_link'><a href="Apes/Validators/ZipCodeValidator.html" title="Apes::Validators::ZipCodeValidator (class)">ZipCodeValidator</a></span> &lt; BaseValidator<small class='search_info'>Apes::Validators</small></li></ul><li><span class='object_link'><a href="Apes/Version.html" title="Apes::Version (module)">Version</a></span><small class='search_info'>Apes</small></li></ul>
54
+
55
+ </ul>
56
+ </div>
57
+ </body>
58
+ </html>