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