csv_decision2 0.5.1 → 0.5.2
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/Dockerfile +1 -1
- data/README.md +16 -16
- data/benchmarks/rufus_decision.rb +5 -7
- data/csv_decision2.gemspec +2 -2
- data/doc/CSVDecision/CellValidationError.html +117 -110
- data/doc/CSVDecision/Columns/Default.html +537 -508
- data/doc/CSVDecision/Columns/Dictionary.html +729 -686
- data/doc/CSVDecision/Columns/Entry.html +457 -433
- data/doc/CSVDecision/Columns.html +1134 -1051
- data/doc/CSVDecision/Constant.html +205 -191
- data/doc/CSVDecision/Data.html +423 -398
- data/doc/CSVDecision/Decide.html +236 -225
- data/doc/CSVDecision/Decision.html +872 -825
- data/doc/CSVDecision/Defaults.html +243 -230
- data/doc/CSVDecision/Dictionary/Entry.html +1026 -964
- data/doc/CSVDecision/Dictionary.html +377 -355
- data/doc/CSVDecision/Error.html +116 -105
- data/doc/CSVDecision/FileError.html +117 -110
- data/doc/CSVDecision/Function.html +181 -168
- data/doc/CSVDecision/Guard.html +200 -185
- data/doc/CSVDecision/Header.html +557 -523
- data/doc/CSVDecision/Index.html +652 -617
- data/doc/CSVDecision/Input.html +329 -312
- data/doc/CSVDecision/Load.html +232 -220
- data/doc/CSVDecision/Matchers/Constant.html +432 -399
- data/doc/CSVDecision/Matchers/Function.html +451 -415
- data/doc/CSVDecision/Matchers/Guard.html +459 -424
- data/doc/CSVDecision/Matchers/Matcher.html +470 -426
- data/doc/CSVDecision/Matchers/Numeric.html +375 -346
- data/doc/CSVDecision/Matchers/Pattern.html +429 -396
- data/doc/CSVDecision/Matchers/Proc.html +617 -575
- data/doc/CSVDecision/Matchers/Range.html +331 -302
- data/doc/CSVDecision/Matchers/Symbol.html +386 -353
- data/doc/CSVDecision/Matchers.html +1509 -1393
- data/doc/CSVDecision/Numeric.html +201 -188
- data/doc/CSVDecision/Options.html +376 -357
- data/doc/CSVDecision/Parse.html +217 -204
- data/doc/CSVDecision/Paths.html +664 -629
- data/doc/CSVDecision/Result.html +1076 -1005
- data/doc/CSVDecision/Scan/InputHashes.html +305 -288
- data/doc/CSVDecision/Scan.html +262 -249
- data/doc/CSVDecision/ScanRow.html +749 -705
- data/doc/CSVDecision/Symbol.html +204 -191
- data/doc/CSVDecision/Table.html +1391 -1305
- data/doc/CSVDecision/TableValidationError.html +117 -110
- data/doc/CSVDecision/Validate.html +353 -337
- data/doc/CSVDecision.html +623 -552
- data/doc/_index.html +488 -448
- data/doc/class_list.html +250 -45
- data/doc/file.README.html +304 -278
- data/doc/index.html +304 -278
- data/doc/method_list.html +1159 -1017
- data/doc/top-level-namespace.html +79 -75
- data/lib/{csv_decision → csv_decision2}/columns.rb +7 -7
- data/lib/{csv_decision → csv_decision2}/data.rb +1 -1
- data/lib/{csv_decision → csv_decision2}/decision.rb +5 -5
- data/lib/{csv_decision → csv_decision2}/defaults.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/dictionary.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/header.rb +5 -5
- data/lib/{csv_decision → csv_decision2}/index.rb +5 -5
- data/lib/{csv_decision → csv_decision2}/input.rb +3 -3
- data/lib/{csv_decision → csv_decision2}/load.rb +6 -6
- data/lib/{csv_decision → csv_decision2}/matchers/constant.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/matchers/function.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/matchers/guard.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/matchers/numeric.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/matchers/pattern.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/matchers/range.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/matchers/symbol.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/matchers.rb +5 -5
- data/lib/{csv_decision → csv_decision2}/options.rb +3 -3
- data/lib/{csv_decision → csv_decision2}/parse.rb +14 -14
- data/lib/{csv_decision → csv_decision2}/paths.rb +5 -5
- data/lib/{csv_decision → csv_decision2}/result.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/scan.rb +3 -3
- data/lib/{csv_decision → csv_decision2}/scan_row.rb +2 -2
- data/lib/{csv_decision → csv_decision2}/table.rb +8 -8
- data/lib/{csv_decision → csv_decision2}/validate.rb +2 -2
- data/lib/csv_decision2.rb +45 -0
- data/spec/{csv_decision → csv_decision2}/columns_spec.rb +44 -44
- data/spec/{csv_decision → csv_decision2}/constant_spec.rb +4 -4
- data/spec/{csv_decision → csv_decision2}/data_spec.rb +11 -11
- data/spec/{csv_decision → csv_decision2}/decision_spec.rb +6 -6
- data/spec/{csv_decision → csv_decision2}/examples_spec.rb +14 -14
- data/spec/{csv_decision → csv_decision2}/index_spec.rb +8 -8
- data/spec/{csv_decision → csv_decision2}/input_spec.rb +9 -9
- data/spec/{csv_decision → csv_decision2}/load_spec.rb +8 -8
- data/spec/{csv_decision → csv_decision2}/matchers/function_spec.rb +7 -7
- data/spec/{csv_decision → csv_decision2}/matchers/guard_spec.rb +14 -14
- data/spec/{csv_decision → csv_decision2}/matchers/numeric_spec.rb +5 -5
- data/spec/{csv_decision → csv_decision2}/matchers/pattern_spec.rb +6 -6
- data/spec/{csv_decision → csv_decision2}/matchers/range_spec.rb +5 -5
- data/spec/{csv_decision → csv_decision2}/matchers/symbol_spec.rb +6 -6
- data/spec/{csv_decision → csv_decision2}/options_spec.rb +18 -18
- data/spec/csv_decision2/parse_spec.rb +44 -0
- data/spec/{csv_decision → csv_decision2}/table_spec.rb +17 -17
- data/spec/csv_decision2_spec.rb +7 -0
- metadata +64 -64
- data/lib/csv_decision.rb +0 -45
- data/spec/csv_decision/parse_spec.rb +0 -44
- data/spec/csv_decision_spec.rb +0 -7
data/doc/CSVDecision/Input.html
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html>
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
<meta
|
|
6
|
-
<
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
+
<title>
|
|
8
|
+
Module: CSVDecision2::Input
|
|
9
|
+
|
|
9
10
|
— Documentation by YARD 0.9.12
|
|
10
|
-
|
|
11
|
-
</title>
|
|
11
|
+
|
|
12
|
+
</title>
|
|
12
13
|
|
|
13
14
|
<link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
|
|
14
15
|
|
|
15
16
|
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
|
|
16
17
|
|
|
17
|
-
<script type="text/javascript" charset="utf-8">
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
</script>
|
|
18
|
+
<script type="text/javascript" charset="utf-8">
|
|
19
|
+
pathId = "CSVDecision2::Input";
|
|
20
|
+
relpath = '../';
|
|
21
|
+
</script>
|
|
21
22
|
|
|
22
23
|
|
|
23
24
|
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
|
@@ -25,239 +26,251 @@
|
|
|
25
26
|
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
|
26
27
|
|
|
27
28
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
29
|
+
</head>
|
|
30
|
+
|
|
31
|
+
<body>
|
|
32
|
+
<div class="nav_wrap">
|
|
33
|
+
<iframe id="nav" src="../class_list.html?1"></iframe>
|
|
34
|
+
<div id="resizer"></div>
|
|
35
|
+
</div>
|
|
36
|
+
|
|
37
|
+
<div id="main" tabindex="-1">
|
|
38
|
+
<div id="header">
|
|
39
|
+
<div id="menu">
|
|
40
|
+
|
|
41
|
+
<a href="../_index.html">Index (I)</a> »
|
|
42
|
+
<span class='title'><span class='object_link'><a href="../CSVDecision2.html"
|
|
43
|
+
title="CSVDecision (module)">CSVDecision</a></span></span>
|
|
44
|
+
»
|
|
45
|
+
<span class="title">Input</span>
|
|
46
|
+
|
|
47
|
+
</div>
|
|
48
|
+
|
|
49
|
+
<div id="search">
|
|
50
|
+
|
|
51
|
+
<a class="full_list_link" id="class_list_link" href="../class_list.html">
|
|
52
|
+
|
|
53
|
+
<svg width="24" height="24">
|
|
54
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
|
55
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
|
56
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
|
57
|
+
</svg>
|
|
58
|
+
</a>
|
|
34
59
|
|
|
35
|
-
<div id="main" tabindex="-1">
|
|
36
|
-
<div id="header">
|
|
37
|
-
<div id="menu">
|
|
38
|
-
|
|
39
|
-
<a href="../_index.html">Index (I)</a> »
|
|
40
|
-
<span class='title'><span class='object_link'><a href="../CSVDecision.html" title="CSVDecision (module)">CSVDecision</a></span></span>
|
|
41
|
-
»
|
|
42
|
-
<span class="title">Input</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
60
|
</div>
|
|
61
|
+
<div class="clear"></div>
|
|
62
|
+
</div>
|
|
61
63
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
<span class="private note title">Private</span>
|
|
66
|
-
</h1>
|
|
67
|
-
<div class="box_info">
|
|
68
|
-
|
|
64
|
+
<div id="content">
|
|
65
|
+
<h1>Module: CSVDecision2::Input
|
|
69
66
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
67
|
|
|
76
|
-
|
|
68
|
+
<span class="private note title">Private</span>
|
|
69
|
+
</h1>
|
|
70
|
+
<div class="box_info">
|
|
71
|
+
|
|
77
72
|
|
|
78
|
-
|
|
79
|
-
<dl>
|
|
80
|
-
<dt>Defined in:</dt>
|
|
81
|
-
<dd>lib/csv_decision/input.rb</dd>
|
|
82
|
-
</dl>
|
|
83
|
-
|
|
84
|
-
</div>
|
|
85
73
|
|
|
86
|
-
<h2>Overview</h2><div class="docstring">
|
|
87
|
-
<div class="discussion">
|
|
88
|
-
<p class="note private">
|
|
89
|
-
<strong>This module is part of a private API.</strong>
|
|
90
|
-
You should avoid using this module if possible, as it may be removed or be changed in the future.
|
|
91
|
-
</p>
|
|
92
74
|
|
|
93
|
-
<p>Parse the input hash.</p>
|
|
94
75
|
|
|
95
76
|
|
|
96
|
-
</div>
|
|
97
|
-
</div>
|
|
98
|
-
<div class="tags">
|
|
99
|
-
|
|
100
77
|
|
|
101
|
-
</div>
|
|
102
78
|
|
|
103
79
|
|
|
104
80
|
|
|
105
81
|
|
|
82
|
+
<dl>
|
|
83
|
+
<dt>Defined in:</dt>
|
|
84
|
+
<dd>lib/csv_decision2/input.rb</dd>
|
|
85
|
+
</dl>
|
|
86
|
+
|
|
87
|
+
</div>
|
|
106
88
|
|
|
89
|
+
<h2>Overview</h2>
|
|
90
|
+
<div class="docstring">
|
|
91
|
+
<div class="discussion">
|
|
92
|
+
<p class="note private">
|
|
93
|
+
<strong>This module is part of a private API.</strong>
|
|
94
|
+
You should avoid using this module if possible, as it may be removed or be changed in the future.
|
|
95
|
+
</p>
|
|
107
96
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
97
|
+
<p>Parse the input hash.</p>
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
</div>
|
|
101
|
+
</div>
|
|
102
|
+
<div class="tags">
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
</div>
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
<h2>
|
|
114
|
+
Class Method Summary
|
|
115
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
|
116
|
+
</h2>
|
|
117
|
+
|
|
118
|
+
<ul class="summary">
|
|
113
119
|
|
|
114
|
-
<ul class="summary">
|
|
115
|
-
|
|
116
120
|
<li class="public ">
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
121
|
+
<span class="summary_signature">
|
|
122
|
+
|
|
123
|
+
<a href="#parse-class_method" title="parse (class method)">.<strong>parse</strong>(table:, input:,
|
|
124
|
+
symbolize_keys:) ⇒ Hash{Symbol=>Object} </a>
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
</span>
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
<span class="private note title">private</span>
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
<span class="summary_desc">
|
|
139
|
+
<div class='inline'></div>
|
|
140
|
+
</span>
|
|
141
|
+
|
|
142
|
+
</li>
|
|
143
|
+
|
|
144
|
+
|
|
138
145
|
<li class="public ">
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
<a href="#parse_data-class_method" title="parse_data (class method)">.<strong>parse_data</strong>(table:, input:) ⇒ Hash{Symbol=>Object} </a>
|
|
142
|
-
|
|
146
|
+
<span class="summary_signature">
|
|
143
147
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
<span class="private note title">private</span>
|
|
148
|
+
<a href="#parse_data-class_method" title="parse_data (class method)">.<strong>parse_data</strong>(table:,
|
|
149
|
+
input:) ⇒ Hash{Symbol=>Object} </a>
|
|
153
150
|
|
|
154
|
-
|
|
155
|
-
<span class="summary_desc"><div class='inline'></div></span>
|
|
156
|
-
|
|
157
|
-
</li>
|
|
158
151
|
|
|
159
|
-
|
|
160
|
-
</ul>
|
|
161
|
-
|
|
162
152
|
|
|
153
|
+
</span>
|
|
163
154
|
|
|
164
155
|
|
|
165
|
-
<div id="class_method_details" class="method_details_list">
|
|
166
|
-
<h2>Class Method Details</h2>
|
|
167
156
|
|
|
168
|
-
|
|
169
|
-
<div class="method_details first">
|
|
170
|
-
<h3 class="signature first" id="parse-class_method">
|
|
171
|
-
|
|
172
|
-
.<strong>parse</strong>(table:, input:, symbolize_keys:) ⇒ <tt>Hash{Symbol=>Object}</tt>
|
|
173
|
-
|
|
174
157
|
|
|
175
|
-
|
|
176
158
|
|
|
177
|
-
|
|
178
|
-
</h3><div class="docstring">
|
|
179
|
-
<div class="discussion">
|
|
180
|
-
<p class="note private">
|
|
181
|
-
<strong>This method is part of a private API.</strong>
|
|
182
|
-
You should avoid using this method if possible, as it may be removed or be changed in the future.
|
|
183
|
-
</p>
|
|
184
159
|
|
|
160
|
+
<span class="private note title">private</span>
|
|
185
161
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
<div class=
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
<
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
<
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
</
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
162
|
+
|
|
163
|
+
<span class="summary_desc">
|
|
164
|
+
<div class='inline'></div>
|
|
165
|
+
</span>
|
|
166
|
+
|
|
167
|
+
</li>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
</ul>
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
<div id="class_method_details" class="method_details_list">
|
|
176
|
+
<h2>Class Method Details</h2>
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
<div class="method_details first">
|
|
180
|
+
<h3 class="signature first" id="parse-class_method">
|
|
181
|
+
|
|
182
|
+
.<strong>parse</strong>(table:, input:, symbolize_keys:) ⇒ <tt>Hash{Symbol=>Object}</tt>
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
</h3>
|
|
189
|
+
<div class="docstring">
|
|
190
|
+
<div class="discussion">
|
|
191
|
+
<p class="note private">
|
|
192
|
+
<strong>This method is part of a private API.</strong>
|
|
193
|
+
You should avoid using this method if possible, as it may be removed or be changed in the future.
|
|
194
|
+
</p>
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
</div>
|
|
198
|
+
</div>
|
|
199
|
+
<div class="tags">
|
|
200
|
+
<p class="tag_title">Parameters:</p>
|
|
201
|
+
<ul class="param">
|
|
202
|
+
|
|
203
|
+
<li>
|
|
204
|
+
|
|
205
|
+
<span class='name'>table</span>
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
<span class='type'>(<tt><span class='object_link'><a href="Table.html"
|
|
209
|
+
title="CSVDecision2::Table (class)">CSVDecision2::Table</a></span></tt>)</span>
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
—
|
|
214
|
+
<div class='inline'>
|
|
215
|
+
<p>Decision table.</p>
|
|
216
|
+
</div>
|
|
217
|
+
|
|
218
|
+
</li>
|
|
219
|
+
|
|
220
|
+
<li>
|
|
221
|
+
|
|
222
|
+
<span class='name'>input</span>
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
<span class='type'>(<tt>Hash</tt>)</span>
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
—
|
|
230
|
+
<div class='inline'>
|
|
231
|
+
<p>Input hash (keys may or may not be symbolized)</p>
|
|
232
|
+
</div>
|
|
233
|
+
|
|
234
|
+
</li>
|
|
235
|
+
|
|
236
|
+
<li>
|
|
237
|
+
|
|
238
|
+
<span class='name'>symbolize_keys</span>
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
<span class='type'>(<tt>Boolean</tt>)</span>
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
—
|
|
246
|
+
<div class='inline'>
|
|
247
|
+
<p>Set to false if keys are symbolized and it's OK to mutate the input
|
|
248
|
+
hash. Otherwise a copy of the input hash is symbolized.</p>
|
|
249
|
+
</div>
|
|
250
|
+
|
|
251
|
+
</li>
|
|
252
|
+
|
|
253
|
+
</ul>
|
|
254
|
+
|
|
255
|
+
<p class="tag_title">Returns:</p>
|
|
256
|
+
<ul class="return">
|
|
257
|
+
|
|
258
|
+
<li>
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
<span class='type'>(<tt>Hash{Symbol=>Object}</tt>)</span>
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
</li>
|
|
266
|
+
|
|
267
|
+
</ul>
|
|
268
|
+
|
|
269
|
+
</div>
|
|
270
|
+
<table class="source_code">
|
|
271
|
+
<tr>
|
|
272
|
+
<td>
|
|
273
|
+
<pre class="lines">
|
|
261
274
|
|
|
262
275
|
|
|
263
276
|
13
|
|
@@ -269,9 +282,9 @@ hash. Otherwise a copy of the input hash is symbolized.</p>
|
|
|
269
282
|
19
|
|
270
283
|
20
|
|
271
284
|
21</pre>
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
285
|
+
</td>
|
|
286
|
+
<td>
|
|
287
|
+
<pre class="code"><span class="info file"># File 'lib/csv_decision2/input.rb', line 13</span>
|
|
275
288
|
|
|
276
289
|
<span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_parse'>parse</span><span class='lparen'>(</span><span class='label'>table:</span><span class='comma'>,</span> <span class='label'>input:</span><span class='comma'>,</span> <span class='label'>symbolize_keys:</span><span class='rparen'>)</span>
|
|
277
290
|
<span class='id identifier rubyid_validate'>validate</span><span class='lparen'>(</span><span class='id identifier rubyid_input'>input</span><span class='rparen'>)</span>
|
|
@@ -282,86 +295,89 @@ hash. Otherwise a copy of the input hash is symbolized.</p>
|
|
|
282
295
|
<span class='id identifier rubyid_parsed_input'>parsed_input</span><span class='lbracket'>[</span><span class='symbol'>:key</span><span class='rbracket'>]</span> <span class='op'>=</span> <span class='id identifier rubyid_parse_key'>parse_key</span><span class='lparen'>(</span><span class='label'>table:</span> <span class='id identifier rubyid_table'>table</span><span class='comma'>,</span> <span class='label'>hash:</span> <span class='id identifier rubyid_parsed_input'>parsed_input</span><span class='lbracket'>[</span><span class='symbol'>:hash</span><span class='rbracket'>]</span><span class='rparen'>)</span> <span class='kw'>if</span> <span class='id identifier rubyid_table'>table</span><span class='period'>.</span><span class='id identifier rubyid_index'>index</span>
|
|
283
296
|
<span class='id identifier rubyid_parsed_input'>parsed_input</span>
|
|
284
297
|
<span class='kw'>end</span></pre>
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
</table>
|
|
288
|
-
</div>
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
</h3><div class="docstring">
|
|
300
|
-
<div class="discussion">
|
|
301
|
-
<p class="note private">
|
|
302
|
-
<strong>This method is part of a private API.</strong>
|
|
303
|
-
You should avoid using this method if possible, as it may be removed or be changed in the future.
|
|
304
|
-
</p>
|
|
298
|
+
</td>
|
|
299
|
+
</tr>
|
|
300
|
+
</table>
|
|
301
|
+
</div>
|
|
302
|
+
|
|
303
|
+
<div class="method_details ">
|
|
304
|
+
<h3 class="signature " id="parse_data-class_method">
|
|
305
|
+
|
|
306
|
+
.<strong>parse_data</strong>(table:, input:) ⇒ <tt>Hash{Symbol=>Object}</tt>
|
|
307
|
+
|
|
308
|
+
|
|
305
309
|
|
|
306
310
|
|
|
307
|
-
|
|
308
|
-
</
|
|
309
|
-
<div class="
|
|
310
|
-
|
|
311
|
-
<
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
</
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
<
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
</
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
311
|
+
|
|
312
|
+
</h3>
|
|
313
|
+
<div class="docstring">
|
|
314
|
+
<div class="discussion">
|
|
315
|
+
<p class="note private">
|
|
316
|
+
<strong>This method is part of a private API.</strong>
|
|
317
|
+
You should avoid using this method if possible, as it may be removed or be changed in the future.
|
|
318
|
+
</p>
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
</div>
|
|
322
|
+
</div>
|
|
323
|
+
<div class="tags">
|
|
324
|
+
<p class="tag_title">Parameters:</p>
|
|
325
|
+
<ul class="param">
|
|
326
|
+
|
|
327
|
+
<li>
|
|
328
|
+
|
|
329
|
+
<span class='name'>table</span>
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
<span class='type'>(<tt><span class='object_link'><a href="Table.html"
|
|
333
|
+
title="CSVDecision2::Table (class)">CSVDecision2::Table</a></span></tt>)</span>
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
—
|
|
338
|
+
<div class='inline'>
|
|
339
|
+
<p>Decision table.</p>
|
|
340
|
+
</div>
|
|
341
|
+
|
|
342
|
+
</li>
|
|
343
|
+
|
|
344
|
+
<li>
|
|
345
|
+
|
|
346
|
+
<span class='name'>input</span>
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
<span class='type'>(<tt>Hash</tt>)</span>
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
—
|
|
354
|
+
<div class='inline'>
|
|
355
|
+
<p>Input hash (keys may or may not be symbolized)</p>
|
|
356
|
+
</div>
|
|
357
|
+
|
|
358
|
+
</li>
|
|
359
|
+
|
|
360
|
+
</ul>
|
|
361
|
+
|
|
362
|
+
<p class="tag_title">Returns:</p>
|
|
363
|
+
<ul class="return">
|
|
364
|
+
|
|
365
|
+
<li>
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
<span class='type'>(<tt>Hash{Symbol=>Object}</tt>)</span>
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
</li>
|
|
373
|
+
|
|
374
|
+
</ul>
|
|
375
|
+
|
|
376
|
+
</div>
|
|
377
|
+
<table class="source_code">
|
|
378
|
+
<tr>
|
|
379
|
+
<td>
|
|
380
|
+
<pre class="lines">
|
|
365
381
|
|
|
366
382
|
|
|
367
383
|
26
|
|
@@ -372,9 +388,9 @@ hash. Otherwise a copy of the input hash is symbolized.</p>
|
|
|
372
388
|
31
|
|
373
389
|
32
|
|
374
390
|
33</pre>
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
391
|
+
</td>
|
|
392
|
+
<td>
|
|
393
|
+
<pre class="code"><span class="info file"># File 'lib/csv_decision2/input.rb', line 26</span>
|
|
378
394
|
|
|
379
395
|
<span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_parse_data'>parse_data</span><span class='lparen'>(</span><span class='label'>table:</span><span class='comma'>,</span> <span class='label'>input:</span><span class='rparen'>)</span>
|
|
380
396
|
<span class='id identifier rubyid_defaulted_columns'>defaulted_columns</span> <span class='op'>=</span> <span class='id identifier rubyid_table'>table</span><span class='period'>.</span><span class='id identifier rubyid_columns'>columns</span><span class='period'>.</span><span class='id identifier rubyid_defaults'>defaults</span>
|
|
@@ -384,21 +400,22 @@ hash. Otherwise a copy of the input hash is symbolized.</p>
|
|
|
384
400
|
|
|
385
401
|
<span class='id identifier rubyid_parse_defaulted'>parse_defaulted</span><span class='lparen'>(</span><span class='label'>table:</span> <span class='id identifier rubyid_table'>table</span><span class='comma'>,</span> <span class='label'>input:</span> <span class='id identifier rubyid_input'>input</span><span class='comma'>,</span> <span class='label'>defaulted_columns:</span> <span class='id identifier rubyid_defaulted_columns'>defaulted_columns</span><span class='rparen'>)</span>
|
|
386
402
|
<span class='kw'>end</span></pre>
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
</table>
|
|
390
|
-
</div>
|
|
391
|
-
|
|
392
|
-
</div>
|
|
403
|
+
</td>
|
|
404
|
+
</tr>
|
|
405
|
+
</table>
|
|
406
|
+
</div>
|
|
393
407
|
|
|
394
|
-
</div>
|
|
408
|
+
</div>
|
|
395
409
|
|
|
396
|
-
|
|
397
|
-
Generated on Sun Feb 11 10:26:07 2018 by
|
|
398
|
-
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
399
|
-
0.9.12 (ruby-2.4.0).
|
|
400
|
-
</div>
|
|
410
|
+
</div>
|
|
401
411
|
|
|
412
|
+
<div id="footer">
|
|
413
|
+
Generated on Sun Feb 11 10:26:07 2018 by
|
|
414
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
415
|
+
0.9.12 (ruby-2.4.0).
|
|
402
416
|
</div>
|
|
403
|
-
|
|
404
|
-
</
|
|
417
|
+
|
|
418
|
+
</div>
|
|
419
|
+
</body>
|
|
420
|
+
|
|
421
|
+
</html>
|