servus 0.1.3 → 0.1.4
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.
- checksums.yaml +4 -4
- data/.yardopts +6 -0
- data/CHANGELOG.md +7 -0
- data/IDEAS.md +5 -0
- data/READme.md +147 -42
- data/Rakefile +33 -0
- data/builds/servus-0.1.3.gem +0 -0
- data/builds/servus-0.1.4.gem +0 -0
- data/docs/core/1_overview.md +77 -0
- data/docs/core/2_architecture.md +92 -0
- data/docs/core/3_service_objects.md +121 -0
- data/docs/features/1_schema_validation.md +119 -0
- data/docs/features/2_error_handling.md +121 -0
- data/docs/features/3_async_execution.md +81 -0
- data/docs/features/4_logging.md +64 -0
- data/docs/guides/1_common_patterns.md +90 -0
- data/docs/guides/2_migration_guide.md +175 -0
- data/docs/integration/1_configuration.md +51 -0
- data/docs/integration/2_testing.md +164 -0
- data/docs/integration/3_rails_integration.md +99 -0
- data/docs/yard/Servus/Base.html +1645 -0
- data/docs/yard/Servus/Config.html +582 -0
- data/docs/yard/Servus/Extensions/Async/Call.html +400 -0
- data/docs/yard/Servus/Extensions/Async/Errors/AsyncError.html +140 -0
- data/docs/yard/Servus/Extensions/Async/Errors/JobEnqueueError.html +154 -0
- data/docs/yard/Servus/Extensions/Async/Errors/ServiceNotFoundError.html +154 -0
- data/docs/yard/Servus/Extensions/Async/Errors.html +128 -0
- data/docs/yard/Servus/Extensions/Async/Ext.html +119 -0
- data/docs/yard/Servus/Extensions/Async/Job.html +310 -0
- data/docs/yard/Servus/Extensions/Async.html +141 -0
- data/docs/yard/Servus/Extensions.html +117 -0
- data/docs/yard/Servus/Generators/ServiceGenerator.html +261 -0
- data/docs/yard/Servus/Generators.html +115 -0
- data/docs/yard/Servus/Helpers/ControllerHelpers.html +457 -0
- data/docs/yard/Servus/Helpers.html +115 -0
- data/docs/yard/Servus/Railtie.html +134 -0
- data/docs/yard/Servus/Support/Errors/AuthenticationError.html +287 -0
- data/docs/yard/Servus/Support/Errors/BadRequestError.html +283 -0
- data/docs/yard/Servus/Support/Errors/ForbiddenError.html +284 -0
- data/docs/yard/Servus/Support/Errors/InternalServerError.html +283 -0
- data/docs/yard/Servus/Support/Errors/NotFoundError.html +284 -0
- data/docs/yard/Servus/Support/Errors/ServiceError.html +489 -0
- data/docs/yard/Servus/Support/Errors/ServiceUnavailableError.html +290 -0
- data/docs/yard/Servus/Support/Errors/UnauthorizedError.html +200 -0
- data/docs/yard/Servus/Support/Errors/UnprocessableEntityError.html +288 -0
- data/docs/yard/Servus/Support/Errors/ValidationError.html +200 -0
- data/docs/yard/Servus/Support/Errors.html +140 -0
- data/docs/yard/Servus/Support/Logger.html +856 -0
- data/docs/yard/Servus/Support/Rescuer/BlockContext.html +585 -0
- data/docs/yard/Servus/Support/Rescuer/CallOverride.html +257 -0
- data/docs/yard/Servus/Support/Rescuer/ClassMethods.html +343 -0
- data/docs/yard/Servus/Support/Rescuer.html +267 -0
- data/docs/yard/Servus/Support/Response.html +574 -0
- data/docs/yard/Servus/Support/Validator.html +1150 -0
- data/docs/yard/Servus/Support.html +119 -0
- data/docs/yard/Servus/Testing/ExampleBuilders.html +523 -0
- data/docs/yard/Servus/Testing/ExampleExtractor.html +578 -0
- data/docs/yard/Servus/Testing.html +142 -0
- data/docs/yard/Servus.html +343 -0
- data/docs/yard/_index.html +535 -0
- data/docs/yard/class_list.html +54 -0
- data/docs/yard/css/common.css +1 -0
- data/docs/yard/css/full_list.css +58 -0
- data/docs/yard/css/style.css +503 -0
- data/docs/yard/file.1_common_patterns.html +154 -0
- data/docs/yard/file.1_configuration.html +115 -0
- data/docs/yard/file.1_overview.html +142 -0
- data/docs/yard/file.1_schema_validation.html +188 -0
- data/docs/yard/file.2_architecture.html +157 -0
- data/docs/yard/file.2_error_handling.html +190 -0
- data/docs/yard/file.2_migration_guide.html +242 -0
- data/docs/yard/file.2_testing.html +227 -0
- data/docs/yard/file.3_async_execution.html +145 -0
- data/docs/yard/file.3_rails_integration.html +160 -0
- data/docs/yard/file.3_service_objects.html +191 -0
- data/docs/yard/file.4_logging.html +135 -0
- data/docs/yard/file.ErrorHandling.html +190 -0
- data/docs/yard/file.READme.html +674 -0
- data/docs/yard/file.architecture.html +157 -0
- data/docs/yard/file.async_execution.html +145 -0
- data/docs/yard/file.common_patterns.html +154 -0
- data/docs/yard/file.configuration.html +115 -0
- data/docs/yard/file.error_handling.html +190 -0
- data/docs/yard/file.logging.html +135 -0
- data/docs/yard/file.migration_guide.html +242 -0
- data/docs/yard/file.overview.html +142 -0
- data/docs/yard/file.rails_integration.html +160 -0
- data/docs/yard/file.schema_validation.html +188 -0
- data/docs/yard/file.service_objects.html +191 -0
- data/docs/yard/file.testing.html +227 -0
- data/docs/yard/file_list.html +119 -0
- data/docs/yard/frames.html +22 -0
- data/docs/yard/index.html +674 -0
- data/docs/yard/js/app.js +344 -0
- data/docs/yard/js/full_list.js +242 -0
- data/docs/yard/js/jquery.js +4 -0
- data/docs/yard/method_list.html +542 -0
- data/docs/yard/top-level-namespace.html +110 -0
- data/lib/generators/servus/service/service_generator.rb +64 -1
- data/lib/generators/servus/service/templates/service.rb.erb +1 -1
- data/lib/servus/base.rb +258 -57
- data/lib/servus/config.rb +58 -12
- data/lib/servus/extensions/async/call.rb +50 -18
- data/lib/servus/extensions/async/errors.rb +23 -3
- data/lib/servus/extensions/async/ext.rb +10 -2
- data/lib/servus/extensions/async/job.rb +30 -9
- data/lib/servus/helpers/controller_helpers.rb +73 -37
- data/lib/servus/support/errors.rb +135 -45
- data/lib/servus/support/rescuer.rb +189 -36
- data/lib/servus/support/response.rb +49 -7
- data/lib/servus/support/validator.rb +120 -19
- data/lib/servus/testing/example_builders.rb +133 -0
- data/lib/servus/testing/example_extractor.rb +309 -0
- data/lib/servus/testing.rb +17 -0
- data/lib/servus/version.rb +1 -1
- metadata +117 -19
|
@@ -0,0 +1,542 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html >
|
|
3
|
+
<head>
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
5
|
+
<meta charset="utf-8" />
|
|
6
|
+
|
|
7
|
+
<link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" />
|
|
8
|
+
|
|
9
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" />
|
|
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>Method List</title>
|
|
19
|
+
<base id="base_target" target="_parent" />
|
|
20
|
+
</head>
|
|
21
|
+
<body>
|
|
22
|
+
<div id="content">
|
|
23
|
+
<div class="fixed_header">
|
|
24
|
+
<h1 id="full_list_header">Method List</h1>
|
|
25
|
+
<div id="full_list_nav">
|
|
26
|
+
|
|
27
|
+
<span><a target="_self" href="class_list.html">
|
|
28
|
+
Classes
|
|
29
|
+
</a></span>
|
|
30
|
+
|
|
31
|
+
<span><a target="_self" href="method_list.html">
|
|
32
|
+
Methods
|
|
33
|
+
</a></span>
|
|
34
|
+
|
|
35
|
+
<span><a target="_self" href="file_list.html">
|
|
36
|
+
Files
|
|
37
|
+
</a></span>
|
|
38
|
+
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<div id="search">
|
|
42
|
+
<label for="search-class">Search:</label>
|
|
43
|
+
<input id="search-class" type="text" />
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
|
|
47
|
+
<ul id="full_list" class="method">
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
<li class="odd ">
|
|
51
|
+
<div class="item">
|
|
52
|
+
<span class='object_link'><a href="Servus/Base.html#after_call-class_method" title="Servus::Base.after_call (method)">after_call</a></span>
|
|
53
|
+
<small>Servus::Base</small>
|
|
54
|
+
</div>
|
|
55
|
+
</li>
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
<li class="even ">
|
|
59
|
+
<div class="item">
|
|
60
|
+
<span class='object_link'><a href="Servus/Support/Errors/ServiceError.html#api_error-instance_method" title="Servus::Support::Errors::ServiceError#api_error (method)">#api_error</a></span>
|
|
61
|
+
<small>Servus::Support::Errors::ServiceError</small>
|
|
62
|
+
</div>
|
|
63
|
+
</li>
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
<li class="odd ">
|
|
67
|
+
<div class="item">
|
|
68
|
+
<span class='object_link'><a href="Servus/Support/Errors/BadRequestError.html#api_error-instance_method" title="Servus::Support::Errors::BadRequestError#api_error (method)">#api_error</a></span>
|
|
69
|
+
<small>Servus::Support::Errors::BadRequestError</small>
|
|
70
|
+
</div>
|
|
71
|
+
</li>
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
<li class="even ">
|
|
75
|
+
<div class="item">
|
|
76
|
+
<span class='object_link'><a href="Servus/Support/Errors/AuthenticationError.html#api_error-instance_method" title="Servus::Support::Errors::AuthenticationError#api_error (method)">#api_error</a></span>
|
|
77
|
+
<small>Servus::Support::Errors::AuthenticationError</small>
|
|
78
|
+
</div>
|
|
79
|
+
</li>
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
<li class="odd ">
|
|
83
|
+
<div class="item">
|
|
84
|
+
<span class='object_link'><a href="Servus/Support/Errors/ForbiddenError.html#api_error-instance_method" title="Servus::Support::Errors::ForbiddenError#api_error (method)">#api_error</a></span>
|
|
85
|
+
<small>Servus::Support::Errors::ForbiddenError</small>
|
|
86
|
+
</div>
|
|
87
|
+
</li>
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
<li class="even ">
|
|
91
|
+
<div class="item">
|
|
92
|
+
<span class='object_link'><a href="Servus/Support/Errors/NotFoundError.html#api_error-instance_method" title="Servus::Support::Errors::NotFoundError#api_error (method)">#api_error</a></span>
|
|
93
|
+
<small>Servus::Support::Errors::NotFoundError</small>
|
|
94
|
+
</div>
|
|
95
|
+
</li>
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
<li class="odd ">
|
|
99
|
+
<div class="item">
|
|
100
|
+
<span class='object_link'><a href="Servus/Support/Errors/UnprocessableEntityError.html#api_error-instance_method" title="Servus::Support::Errors::UnprocessableEntityError#api_error (method)">#api_error</a></span>
|
|
101
|
+
<small>Servus::Support::Errors::UnprocessableEntityError</small>
|
|
102
|
+
</div>
|
|
103
|
+
</li>
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<li class="even ">
|
|
107
|
+
<div class="item">
|
|
108
|
+
<span class='object_link'><a href="Servus/Support/Errors/InternalServerError.html#api_error-instance_method" title="Servus::Support::Errors::InternalServerError#api_error (method)">#api_error</a></span>
|
|
109
|
+
<small>Servus::Support::Errors::InternalServerError</small>
|
|
110
|
+
</div>
|
|
111
|
+
</li>
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
<li class="odd ">
|
|
115
|
+
<div class="item">
|
|
116
|
+
<span class='object_link'><a href="Servus/Support/Errors/ServiceUnavailableError.html#api_error-instance_method" title="Servus::Support::Errors::ServiceUnavailableError#api_error (method)">#api_error</a></span>
|
|
117
|
+
<small>Servus::Support::Errors::ServiceUnavailableError</small>
|
|
118
|
+
</div>
|
|
119
|
+
</li>
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
<li class="even ">
|
|
123
|
+
<div class="item">
|
|
124
|
+
<span class='object_link'><a href="Servus/Base.html#arguments_schema-class_method" title="Servus::Base.arguments_schema (method)">arguments_schema</a></span>
|
|
125
|
+
<small>Servus::Base</small>
|
|
126
|
+
</div>
|
|
127
|
+
</li>
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
<li class="odd ">
|
|
131
|
+
<div class="item">
|
|
132
|
+
<span class='object_link'><a href="Servus/Base.html#before_call-class_method" title="Servus::Base.before_call (method)">before_call</a></span>
|
|
133
|
+
<small>Servus::Base</small>
|
|
134
|
+
</div>
|
|
135
|
+
</li>
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
<li class="even ">
|
|
139
|
+
<div class="item">
|
|
140
|
+
<span class='object_link'><a href="Servus/Base.html#benchmark-class_method" title="Servus::Base.benchmark (method)">benchmark</a></span>
|
|
141
|
+
<small>Servus::Base</small>
|
|
142
|
+
</div>
|
|
143
|
+
</li>
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
<li class="odd ">
|
|
147
|
+
<div class="item">
|
|
148
|
+
<span class='object_link'><a href="Servus/Support/Validator.html#cache-class_method" title="Servus::Support::Validator.cache (method)">cache</a></span>
|
|
149
|
+
<small>Servus::Support::Validator</small>
|
|
150
|
+
</div>
|
|
151
|
+
</li>
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
<li class="even ">
|
|
155
|
+
<div class="item">
|
|
156
|
+
<span class='object_link'><a href="Servus/Base.html#call-class_method" title="Servus::Base.call (method)">call</a></span>
|
|
157
|
+
<small>Servus::Base</small>
|
|
158
|
+
</div>
|
|
159
|
+
</li>
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
<li class="odd ">
|
|
163
|
+
<div class="item">
|
|
164
|
+
<span class='object_link'><a href="Servus/Support/Rescuer/CallOverride.html#call-instance_method" title="Servus::Support::Rescuer::CallOverride#call (method)">#call</a></span>
|
|
165
|
+
<small>Servus::Support::Rescuer::CallOverride</small>
|
|
166
|
+
</div>
|
|
167
|
+
</li>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
<li class="even ">
|
|
171
|
+
<div class="item">
|
|
172
|
+
<span class='object_link'><a href="Servus/Extensions/Async/Call.html#call_async-instance_method" title="Servus::Extensions::Async::Call#call_async (method)">#call_async</a></span>
|
|
173
|
+
<small>Servus::Extensions::Async::Call</small>
|
|
174
|
+
</div>
|
|
175
|
+
</li>
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
<li class="odd ">
|
|
179
|
+
<div class="item">
|
|
180
|
+
<span class='object_link'><a href="Servus/Support/Validator.html#clear_cache!-class_method" title="Servus::Support::Validator.clear_cache! (method)">clear_cache!</a></span>
|
|
181
|
+
<small>Servus::Support::Validator</small>
|
|
182
|
+
</div>
|
|
183
|
+
</li>
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
<li class="even ">
|
|
187
|
+
<div class="item">
|
|
188
|
+
<span class='object_link'><a href="Servus.html#config-class_method" title="Servus.config (method)">config</a></span>
|
|
189
|
+
<small>Servus</small>
|
|
190
|
+
</div>
|
|
191
|
+
</li>
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
<li class="odd ">
|
|
195
|
+
<div class="item">
|
|
196
|
+
<span class='object_link'><a href="Servus.html#configure-class_method" title="Servus.configure (method)">configure</a></span>
|
|
197
|
+
<small>Servus</small>
|
|
198
|
+
</div>
|
|
199
|
+
</li>
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
<li class="even ">
|
|
203
|
+
<div class="item">
|
|
204
|
+
<span class='object_link'><a href="Servus/Generators/ServiceGenerator.html#create_service_file-instance_method" title="Servus::Generators::ServiceGenerator#create_service_file (method)">#create_service_file</a></span>
|
|
205
|
+
<small>Servus::Generators::ServiceGenerator</small>
|
|
206
|
+
</div>
|
|
207
|
+
</li>
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
<li class="odd ">
|
|
211
|
+
<div class="item">
|
|
212
|
+
<span class='object_link'><a href="Servus/Support/Response.html#data-instance_method" title="Servus::Support::Response#data (method)">#data</a></span>
|
|
213
|
+
<small>Servus::Support::Response</small>
|
|
214
|
+
</div>
|
|
215
|
+
</li>
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
<li class="even ">
|
|
219
|
+
<div class="item">
|
|
220
|
+
<span class='object_link'><a href="Servus/Support/Response.html#error-instance_method" title="Servus::Support::Response#error (method)">#error</a></span>
|
|
221
|
+
<small>Servus::Support::Response</small>
|
|
222
|
+
</div>
|
|
223
|
+
</li>
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
<li class="odd ">
|
|
227
|
+
<div class="item">
|
|
228
|
+
<span class='object_link'><a href="Servus/Base.html#error!-instance_method" title="Servus::Base#error! (method)">#error!</a></span>
|
|
229
|
+
<small>Servus::Base</small>
|
|
230
|
+
</div>
|
|
231
|
+
</li>
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
<li class="even ">
|
|
235
|
+
<div class="item">
|
|
236
|
+
<span class='object_link'><a href="Servus/Testing/ExampleExtractor.html#extract-class_method" title="Servus::Testing::ExampleExtractor.extract (method)">extract</a></span>
|
|
237
|
+
<small>Servus::Testing::ExampleExtractor</small>
|
|
238
|
+
</div>
|
|
239
|
+
</li>
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
<li class="odd ">
|
|
243
|
+
<div class="item">
|
|
244
|
+
<span class='object_link'><a href="Servus/Testing/ExampleExtractor.html#extract-instance_method" title="Servus::Testing::ExampleExtractor#extract (method)">#extract</a></span>
|
|
245
|
+
<small>Servus::Testing::ExampleExtractor</small>
|
|
246
|
+
</div>
|
|
247
|
+
</li>
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
<li class="even ">
|
|
251
|
+
<div class="item">
|
|
252
|
+
<span class='object_link'><a href="Servus/Base.html#failure-instance_method" title="Servus::Base#failure (method)">#failure</a></span>
|
|
253
|
+
<small>Servus::Base</small>
|
|
254
|
+
</div>
|
|
255
|
+
</li>
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
<li class="odd ">
|
|
259
|
+
<div class="item">
|
|
260
|
+
<span class='object_link'><a href="Servus/Support/Rescuer/BlockContext.html#failure-instance_method" title="Servus::Support::Rescuer::BlockContext#failure (method)">#failure</a></span>
|
|
261
|
+
<small>Servus::Support::Rescuer::BlockContext</small>
|
|
262
|
+
</div>
|
|
263
|
+
</li>
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
<li class="even ">
|
|
267
|
+
<div class="item">
|
|
268
|
+
<span class='object_link'><a href="Servus/Support/Validator.html#fetch_schema_from_sources-class_method" title="Servus::Support::Validator.fetch_schema_from_sources (method)">fetch_schema_from_sources</a></span>
|
|
269
|
+
<small>Servus::Support::Validator</small>
|
|
270
|
+
</div>
|
|
271
|
+
</li>
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
<li class="odd ">
|
|
275
|
+
<div class="item">
|
|
276
|
+
<span class='object_link'><a href="Servus/Support/Rescuer.html#included-class_method" title="Servus::Support::Rescuer.included (method)">included</a></span>
|
|
277
|
+
<small>Servus::Support::Rescuer</small>
|
|
278
|
+
</div>
|
|
279
|
+
</li>
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
<li class="even ">
|
|
283
|
+
<div class="item">
|
|
284
|
+
<span class='object_link'><a href="Servus/Config.html#initialize-instance_method" title="Servus::Config#initialize (method)">#initialize</a></span>
|
|
285
|
+
<small>Servus::Config</small>
|
|
286
|
+
</div>
|
|
287
|
+
</li>
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
<li class="odd ">
|
|
291
|
+
<div class="item">
|
|
292
|
+
<span class='object_link'><a href="Servus/Support/Errors/ServiceError.html#initialize-instance_method" title="Servus::Support::Errors::ServiceError#initialize (method)">#initialize</a></span>
|
|
293
|
+
<small>Servus::Support::Errors::ServiceError</small>
|
|
294
|
+
</div>
|
|
295
|
+
</li>
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
<li class="even ">
|
|
299
|
+
<div class="item">
|
|
300
|
+
<span class='object_link'><a href="Servus/Support/Rescuer/BlockContext.html#initialize-instance_method" title="Servus::Support::Rescuer::BlockContext#initialize (method)">#initialize</a></span>
|
|
301
|
+
<small>Servus::Support::Rescuer::BlockContext</small>
|
|
302
|
+
</div>
|
|
303
|
+
</li>
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
<li class="odd ">
|
|
307
|
+
<div class="item">
|
|
308
|
+
<span class='object_link'><a href="Servus/Support/Response.html#initialize-instance_method" title="Servus::Support::Response#initialize (method)">#initialize</a></span>
|
|
309
|
+
<small>Servus::Support::Response</small>
|
|
310
|
+
</div>
|
|
311
|
+
</li>
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
<li class="even ">
|
|
315
|
+
<div class="item">
|
|
316
|
+
<span class='object_link'><a href="Servus/Testing/ExampleExtractor.html#initialize-instance_method" title="Servus::Testing::ExampleExtractor#initialize (method)">#initialize</a></span>
|
|
317
|
+
<small>Servus::Testing::ExampleExtractor</small>
|
|
318
|
+
</div>
|
|
319
|
+
</li>
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
<li class="odd ">
|
|
323
|
+
<div class="item">
|
|
324
|
+
<span class='object_link'><a href="Servus/Support/Validator.html#load_schema-class_method" title="Servus::Support::Validator.load_schema (method)">load_schema</a></span>
|
|
325
|
+
<small>Servus::Support::Validator</small>
|
|
326
|
+
</div>
|
|
327
|
+
</li>
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
<li class="even ">
|
|
331
|
+
<div class="item">
|
|
332
|
+
<span class='object_link'><a href="Servus/Support/Logger.html#log_call-class_method" title="Servus::Support::Logger.log_call (method)">log_call</a></span>
|
|
333
|
+
<small>Servus::Support::Logger</small>
|
|
334
|
+
</div>
|
|
335
|
+
</li>
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
<li class="odd ">
|
|
339
|
+
<div class="item">
|
|
340
|
+
<span class='object_link'><a href="Servus/Support/Logger.html#log_exception-class_method" title="Servus::Support::Logger.log_exception (method)">log_exception</a></span>
|
|
341
|
+
<small>Servus::Support::Logger</small>
|
|
342
|
+
</div>
|
|
343
|
+
</li>
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
<li class="even ">
|
|
347
|
+
<div class="item">
|
|
348
|
+
<span class='object_link'><a href="Servus/Support/Logger.html#log_failure-class_method" title="Servus::Support::Logger.log_failure (method)">log_failure</a></span>
|
|
349
|
+
<small>Servus::Support::Logger</small>
|
|
350
|
+
</div>
|
|
351
|
+
</li>
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
<li class="odd ">
|
|
355
|
+
<div class="item">
|
|
356
|
+
<span class='object_link'><a href="Servus/Support/Logger.html#log_result-class_method" title="Servus::Support::Logger.log_result (method)">log_result</a></span>
|
|
357
|
+
<small>Servus::Support::Logger</small>
|
|
358
|
+
</div>
|
|
359
|
+
</li>
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
<li class="even ">
|
|
363
|
+
<div class="item">
|
|
364
|
+
<span class='object_link'><a href="Servus/Support/Logger.html#log_success-class_method" title="Servus::Support::Logger.log_success (method)">log_success</a></span>
|
|
365
|
+
<small>Servus::Support::Logger</small>
|
|
366
|
+
</div>
|
|
367
|
+
</li>
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
<li class="odd ">
|
|
371
|
+
<div class="item">
|
|
372
|
+
<span class='object_link'><a href="Servus/Support/Logger.html#log_validation_error-class_method" title="Servus::Support::Logger.log_validation_error (method)">log_validation_error</a></span>
|
|
373
|
+
<small>Servus::Support::Logger</small>
|
|
374
|
+
</div>
|
|
375
|
+
</li>
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
<li class="even ">
|
|
379
|
+
<div class="item">
|
|
380
|
+
<span class='object_link'><a href="Servus/Support/Logger.html#logger-class_method" title="Servus::Support::Logger.logger (method)">logger</a></span>
|
|
381
|
+
<small>Servus::Support::Logger</small>
|
|
382
|
+
</div>
|
|
383
|
+
</li>
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
<li class="odd ">
|
|
387
|
+
<div class="item">
|
|
388
|
+
<span class='object_link'><a href="Servus/Support/Errors/ServiceError.html#message-instance_method" title="Servus::Support::Errors::ServiceError#message (method)">#message</a></span>
|
|
389
|
+
<small>Servus::Support::Errors::ServiceError</small>
|
|
390
|
+
</div>
|
|
391
|
+
</li>
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
<li class="even ">
|
|
395
|
+
<div class="item">
|
|
396
|
+
<span class='object_link'><a href="Servus/Support/Validator.html#parse_service_namespace-class_method" title="Servus::Support::Validator.parse_service_namespace (method)">parse_service_namespace</a></span>
|
|
397
|
+
<small>Servus::Support::Validator</small>
|
|
398
|
+
</div>
|
|
399
|
+
</li>
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
<li class="odd ">
|
|
403
|
+
<div class="item">
|
|
404
|
+
<span class='object_link'><a href="Servus/Extensions/Async/Job.html#perform-instance_method" title="Servus::Extensions::Async::Job#perform (method)">#perform</a></span>
|
|
405
|
+
<small>Servus::Extensions::Async::Job</small>
|
|
406
|
+
</div>
|
|
407
|
+
</li>
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
<li class="even ">
|
|
411
|
+
<div class="item">
|
|
412
|
+
<span class='object_link'><a href="Servus/Helpers/ControllerHelpers.html#render_service_object_error-instance_method" title="Servus::Helpers::ControllerHelpers#render_service_object_error (method)">#render_service_object_error</a></span>
|
|
413
|
+
<small>Servus::Helpers::ControllerHelpers</small>
|
|
414
|
+
</div>
|
|
415
|
+
</li>
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
<li class="odd ">
|
|
419
|
+
<div class="item">
|
|
420
|
+
<span class='object_link'><a href="Servus/Support/Rescuer/ClassMethods.html#rescue_from-instance_method" title="Servus::Support::Rescuer::ClassMethods#rescue_from (method)">#rescue_from</a></span>
|
|
421
|
+
<small>Servus::Support::Rescuer::ClassMethods</small>
|
|
422
|
+
</div>
|
|
423
|
+
</li>
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
<li class="even ">
|
|
427
|
+
<div class="item">
|
|
428
|
+
<span class='object_link'><a href="Servus/Support/Rescuer/BlockContext.html#result-instance_method" title="Servus::Support::Rescuer::BlockContext#result (method)">#result</a></span>
|
|
429
|
+
<small>Servus::Support::Rescuer::BlockContext</small>
|
|
430
|
+
</div>
|
|
431
|
+
</li>
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
<li class="odd ">
|
|
435
|
+
<div class="item">
|
|
436
|
+
<span class='object_link'><a href="Servus/Base.html#result_schema-class_method" title="Servus::Base.result_schema (method)">result_schema</a></span>
|
|
437
|
+
<small>Servus::Base</small>
|
|
438
|
+
</div>
|
|
439
|
+
</li>
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
<li class="even ">
|
|
443
|
+
<div class="item">
|
|
444
|
+
<span class='object_link'><a href="Servus/Helpers/ControllerHelpers.html#run_service-instance_method" title="Servus::Helpers::ControllerHelpers#run_service (method)">#run_service</a></span>
|
|
445
|
+
<small>Servus::Helpers::ControllerHelpers</small>
|
|
446
|
+
</div>
|
|
447
|
+
</li>
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
<li class="odd ">
|
|
451
|
+
<div class="item">
|
|
452
|
+
<span class='object_link'><a href="Servus/Base.html#schema-class_method" title="Servus::Base.schema (method)">schema</a></span>
|
|
453
|
+
<small>Servus::Base</small>
|
|
454
|
+
</div>
|
|
455
|
+
</li>
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
<li class="even ">
|
|
459
|
+
<div class="item">
|
|
460
|
+
<span class='object_link'><a href="Servus/Config.html#schema_dir_for-instance_method" title="Servus::Config#schema_dir_for (method)">#schema_dir_for</a></span>
|
|
461
|
+
<small>Servus::Config</small>
|
|
462
|
+
</div>
|
|
463
|
+
</li>
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
<li class="odd ">
|
|
467
|
+
<div class="item">
|
|
468
|
+
<span class='object_link'><a href="Servus/Config.html#schema_path_for-instance_method" title="Servus::Config#schema_path_for (method)">#schema_path_for</a></span>
|
|
469
|
+
<small>Servus::Config</small>
|
|
470
|
+
</div>
|
|
471
|
+
</li>
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
<li class="even ">
|
|
475
|
+
<div class="item">
|
|
476
|
+
<span class='object_link'><a href="Servus/Config.html#schema_root-instance_method" title="Servus::Config#schema_root (method)">#schema_root</a></span>
|
|
477
|
+
<small>Servus::Config</small>
|
|
478
|
+
</div>
|
|
479
|
+
</li>
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
<li class="odd ">
|
|
483
|
+
<div class="item">
|
|
484
|
+
<span class='object_link'><a href="Servus/Testing/ExampleBuilders.html#servus_arguments_example-instance_method" title="Servus::Testing::ExampleBuilders#servus_arguments_example (method)">#servus_arguments_example</a></span>
|
|
485
|
+
<small>Servus::Testing::ExampleBuilders</small>
|
|
486
|
+
</div>
|
|
487
|
+
</li>
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
<li class="even ">
|
|
491
|
+
<div class="item">
|
|
492
|
+
<span class='object_link'><a href="Servus/Testing/ExampleBuilders.html#servus_result_example-instance_method" title="Servus::Testing::ExampleBuilders#servus_result_example (method)">#servus_result_example</a></span>
|
|
493
|
+
<small>Servus::Testing::ExampleBuilders</small>
|
|
494
|
+
</div>
|
|
495
|
+
</li>
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
<li class="odd ">
|
|
499
|
+
<div class="item">
|
|
500
|
+
<span class='object_link'><a href="Servus/Base.html#success-instance_method" title="Servus::Base#success (method)">#success</a></span>
|
|
501
|
+
<small>Servus::Base</small>
|
|
502
|
+
</div>
|
|
503
|
+
</li>
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
<li class="even ">
|
|
507
|
+
<div class="item">
|
|
508
|
+
<span class='object_link'><a href="Servus/Support/Rescuer/BlockContext.html#success-instance_method" title="Servus::Support::Rescuer::BlockContext#success (method)">#success</a></span>
|
|
509
|
+
<small>Servus::Support::Rescuer::BlockContext</small>
|
|
510
|
+
</div>
|
|
511
|
+
</li>
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
<li class="odd ">
|
|
515
|
+
<div class="item">
|
|
516
|
+
<span class='object_link'><a href="Servus/Support/Response.html#success%3F-instance_method" title="Servus::Support::Response#success? (method)">#success?</a></span>
|
|
517
|
+
<small>Servus::Support::Response</small>
|
|
518
|
+
</div>
|
|
519
|
+
</li>
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
<li class="even ">
|
|
523
|
+
<div class="item">
|
|
524
|
+
<span class='object_link'><a href="Servus/Support/Validator.html#validate_arguments!-class_method" title="Servus::Support::Validator.validate_arguments! (method)">validate_arguments!</a></span>
|
|
525
|
+
<small>Servus::Support::Validator</small>
|
|
526
|
+
</div>
|
|
527
|
+
</li>
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
<li class="odd ">
|
|
531
|
+
<div class="item">
|
|
532
|
+
<span class='object_link'><a href="Servus/Support/Validator.html#validate_result!-class_method" title="Servus::Support::Validator.validate_result! (method)">validate_result!</a></span>
|
|
533
|
+
<small>Servus::Support::Validator</small>
|
|
534
|
+
</div>
|
|
535
|
+
</li>
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
</ul>
|
|
540
|
+
</div>
|
|
541
|
+
</body>
|
|
542
|
+
</html>
|
|
@@ -0,0 +1,110 @@
|
|
|
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
|
+
Top Level Namespace
|
|
8
|
+
|
|
9
|
+
— Servus | Service Object Framework
|
|
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 = "";
|
|
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</a> »
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
<span class="title">Top Level Namespace</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>Top Level Namespace
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
</h1>
|
|
67
|
+
<div class="box_info">
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
</div>
|
|
80
|
+
|
|
81
|
+
<h2>Defined Under Namespace</h2>
|
|
82
|
+
<p class="children">
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Servus.html" title="Servus (module)">Servus</a></span>
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
</p>
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
</div>
|
|
101
|
+
|
|
102
|
+
<div id="footer">
|
|
103
|
+
Generated on Fri Nov 21 00:33:23 2025 by
|
|
104
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
105
|
+
0.9.37 (ruby-3.4.4).
|
|
106
|
+
</div>
|
|
107
|
+
|
|
108
|
+
</div>
|
|
109
|
+
</body>
|
|
110
|
+
</html>
|