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::Columns::Default
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::Columns::Default
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::Columns::Default";
19
- relpath = '../../';
20
- </script>
18
+ <script type="text/javascript" charset="utf-8">
19
+ pathId = "CSVDecision2::Columns::Default";
20
+ relpath = '../../';
21
+ </script>
21
22
 
22
23
 
23
24
  <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
@@ -25,565 +26,593 @@
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 (D)</a> &raquo;
42
+ <span class='title'><span class='object_link'><a href="../../CSVDecision2.html"
43
+ title="CSVDecision (module)">CSVDecision</a></span></span> &raquo; <span class='title'><span
44
+ class='object_link'><a href="../Columns.html"
45
+ title="CSVDecision2::Columns (class)">Columns</a></span></span>
46
+ &raquo;
47
+ <span class="title">Default</span>
48
+
49
+ </div>
50
+
51
+ <div id="search">
52
+
53
+ <a class="full_list_link" id="class_list_link" href="../../class_list.html">
54
+
55
+ <svg width="24" height="24">
56
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
57
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
58
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
59
+ </svg>
60
+ </a>
61
+
62
+ </div>
63
+ <div class="clear"></div>
33
64
  </div>
34
65
 
35
- <div id="main" tabindex="-1">
36
- <div id="header">
37
- <div id="menu">
38
-
39
- <a href="../../_index.html">Index (D)</a> &raquo;
40
- <span class='title'><span class='object_link'><a href="../../CSVDecision.html" title="CSVDecision (module)">CSVDecision</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Columns.html" title="CSVDecision::Columns (class)">Columns</a></span></span>
41
- &raquo;
42
- <span class="title">Default</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>
66
+ <div id="content">
67
+ <h1>Class: CSVDecision2::Columns::Default
68
+
69
+
70
+ <span class="private note title">Private</span>
71
+ </h1>
72
+ <div class="box_info">
73
+
74
+ <dl>
75
+ <dt>Inherits:</dt>
76
+ <dd>
77
+ <span class="inheritName">Struct</span>
78
+
79
+ <ul class="fullTree">
80
+ <li>Object</li>
81
+
82
+ <li class="next">Struct</li>
83
+
84
+ <li class="next">CSVDecision2::Columns::Default</li>
85
+
86
+ </ul>
87
+ <a href="#" class="inheritanceTree">show all</a>
88
+
89
+ </dd>
90
+ </dl>
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+ <dl>
103
+ <dt>Defined in:</dt>
104
+ <dd>lib/csv_decision2/columns.rb</dd>
105
+ </dl>
106
+
60
107
  </div>
61
108
 
62
- <div id="content"><h1>Class: CSVDecision::Columns::Default
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">Struct</span>
73
-
74
- <ul class="fullTree">
75
- <li>Object</li>
76
-
77
- <li class="next">Struct</li>
78
-
79
- <li class="next">CSVDecision::Columns::Default</li>
80
-
81
- </ul>
82
- <a href="#" class="inheritanceTree">show all</a>
83
-
84
- </dd>
85
- </dl>
86
-
87
-
88
-
89
-
90
-
91
-
92
-
93
-
94
-
95
-
96
-
97
- <dl>
98
- <dt>Defined in:</dt>
99
- <dd>lib/csv_decision/columns.rb</dd>
100
- </dl>
101
-
102
- </div>
103
-
104
- <h2>Overview</h2><div class="docstring">
105
- <div class="discussion">
106
- <p class="note private">
107
- <strong>This class is part of a private API.</strong>
108
- You should avoid using this class if possible, as it may be removed or be changed in the future.
109
- </p>
110
-
111
- <p>Value object used for any columns with defaults.</p>
109
+ <h2>Overview</h2>
110
+ <div class="docstring">
111
+ <div class="discussion">
112
+ <p class="note private">
113
+ <strong>This class is part of a private API.</strong>
114
+ You should avoid using this class if possible, as it may be removed or be changed in the future.
115
+ </p>
112
116
 
117
+ <p>Value object used for any columns with defaults.</p>
118
+
119
+
120
+ </div>
121
+ </div>
122
+ <div class="tags">
123
+
124
+
125
+ </div>
126
+
127
+
128
+
129
+ <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collapse</a></small></h2>
130
+ <ul class="summary">
131
+
132
+ <li class="public ">
133
+ <span class="summary_signature">
134
+
135
+ <a href="#eval-instance_method" title="#eval (instance method)">#<strong>eval</strong> &#x21d2; Object </a>
136
+
137
+
138
+
139
+ </span>
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+ <span class="summary_desc">
153
+ <div class='inline'>
154
+ <p>Returns the value of attribute eval.</p>
155
+ </div>
156
+ </span>
157
+
158
+ </li>
159
+
160
+
161
+ <li class="public ">
162
+ <span class="summary_signature">
163
+
164
+ <a href="#function-instance_method" title="#function (instance method)">#<strong>function</strong> &#x21d2;
165
+ Object </a>
166
+
167
+
168
+
169
+ </span>
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+ <span class="summary_desc">
183
+ <div class='inline'>
184
+ <p>Returns the value of attribute function.</p>
185
+ </div>
186
+ </span>
187
+
188
+ </li>
189
+
190
+
191
+ <li class="public ">
192
+ <span class="summary_signature">
193
+
194
+ <a href="#name-instance_method" title="#name (instance method)">#<strong>name</strong> &#x21d2; Object </a>
195
+
196
+
197
+
198
+ </span>
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+ <span class="summary_desc">
212
+ <div class='inline'>
213
+ <p>Returns the value of attribute name.</p>
214
+ </div>
215
+ </span>
216
+
217
+ </li>
218
+
219
+
220
+ <li class="public ">
221
+ <span class="summary_signature">
222
+
223
+ <a href="#set_if-instance_method" title="#set_if (instance method)">#<strong>set_if</strong> &#x21d2; Object
224
+ </a>
225
+
226
+
227
+
228
+ </span>
229
+
230
+
231
+
232
+
233
+
234
+
235
+
236
+
237
+
238
+
239
+
240
+
241
+ <span class="summary_desc">
242
+ <div class='inline'>
243
+ <p>Returns the value of attribute set_if.</p>
244
+ </div>
245
+ </span>
246
+
247
+ </li>
248
+
249
+
250
+ <li class="public ">
251
+ <span class="summary_signature">
252
+
253
+ <a href="#type-instance_method" title="#type (instance method)">#<strong>type</strong> &#x21d2; Object </a>
254
+
255
+
256
+
257
+ </span>
113
258
 
114
- </div>
115
- </div>
116
- <div class="tags">
117
-
118
-
119
- </div>
120
-
121
-
122
-
123
- <h2>Instance Attribute Summary <small><a href="#" class="summary_toggle">collapse</a></small></h2>
124
- <ul class="summary">
125
-
126
- <li class="public ">
127
- <span class="summary_signature">
128
-
129
- <a href="#eval-instance_method" title="#eval (instance method)">#<strong>eval</strong> &#x21d2; Object </a>
130
-
131
-
132
-
133
- </span>
134
-
135
-
136
-
137
-
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
- <span class="summary_desc"><div class='inline'>
147
- <p>Returns the value of attribute eval.</p>
148
- </div></span>
149
-
150
- </li>
151
-
152
-
153
- <li class="public ">
154
- <span class="summary_signature">
155
-
156
- <a href="#function-instance_method" title="#function (instance method)">#<strong>function</strong> &#x21d2; Object </a>
157
-
158
-
159
-
160
- </span>
161
-
162
-
163
-
164
-
165
-
166
-
167
-
168
-
169
-
170
-
171
-
172
-
173
- <span class="summary_desc"><div class='inline'>
174
- <p>Returns the value of attribute function.</p>
175
- </div></span>
176
-
177
- </li>
178
-
179
-
180
- <li class="public ">
181
- <span class="summary_signature">
182
-
183
- <a href="#name-instance_method" title="#name (instance method)">#<strong>name</strong> &#x21d2; Object </a>
184
-
185
-
186
-
187
- </span>
188
-
189
-
190
-
191
-
192
-
193
-
194
-
195
-
196
-
197
-
198
-
199
-
200
- <span class="summary_desc"><div class='inline'>
201
- <p>Returns the value of attribute name.</p>
202
- </div></span>
203
-
204
- </li>
205
-
206
-
207
- <li class="public ">
208
- <span class="summary_signature">
209
-
210
- <a href="#set_if-instance_method" title="#set_if (instance method)">#<strong>set_if</strong> &#x21d2; Object </a>
211
-
212
-
213
-
214
- </span>
215
-
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
-
226
-
227
- <span class="summary_desc"><div class='inline'>
228
- <p>Returns the value of attribute set_if.</p>
229
- </div></span>
230
-
231
- </li>
232
-
233
-
234
- <li class="public ">
235
- <span class="summary_signature">
236
-
237
- <a href="#type-instance_method" title="#type (instance method)">#<strong>type</strong> &#x21d2; Object </a>
238
-
239
-
240
-
241
- </span>
242
-
243
-
244
-
245
-
246
-
247
-
248
-
249
-
250
-
251
-
252
-
253
-
254
- <span class="summary_desc"><div class='inline'>
255
- <p>Returns the value of attribute type.</p>
256
- </div></span>
257
-
258
- </li>
259
-
260
-
261
- </ul>
262
-
263
-
264
-
265
-
266
-
267
-
268
- <div id="instance_attr_details" class="attr_details">
269
- <h2>Instance Attribute Details</h2>
270
-
271
-
272
- <span id="eval=-instance_method"></span>
273
- <div class="method_details first">
274
- <h3 class="signature first" id="eval-instance_method">
275
-
276
- #<strong>eval</strong> &#x21d2; <tt>Object</tt>
277
-
278
-
279
-
280
-
281
-
282
- </h3><div class="docstring">
283
- <div class="discussion">
284
-
285
- <p>Returns the value of attribute eval</p>
286
259
 
287
260
 
288
- </div>
289
- </div>
290
- <div class="tags">
291
-
292
- <p class="tag_title">Returns:</p>
293
- <ul class="return">
294
-
295
- <li>
296
-
297
-
298
- <span class='type'>(<tt>Object</tt>)</span>
299
-
300
-
301
-
302
- &mdash;
303
- <div class='inline'>
304
- <p>the current value of eval</p>
305
- </div>
306
-
307
- </li>
308
-
309
- </ul>
310
-
311
- </div><table class="source_code">
312
- <tr>
313
- <td>
314
- <pre class="lines">
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+ <span class="summary_desc">
271
+ <div class='inline'>
272
+ <p>Returns the value of attribute type.</p>
273
+ </div>
274
+ </span>
275
+
276
+ </li>
277
+
278
+
279
+ </ul>
280
+
281
+
282
+
283
+
284
+
285
+
286
+ <div id="instance_attr_details" class="attr_details">
287
+ <h2>Instance Attribute Details</h2>
288
+
289
+
290
+ <span id="eval=-instance_method"></span>
291
+ <div class="method_details first">
292
+ <h3 class="signature first" id="eval-instance_method">
293
+
294
+ #<strong>eval</strong> &#x21d2; <tt>Object</tt>
295
+
296
+
297
+
298
+
299
+
300
+ </h3>
301
+ <div class="docstring">
302
+ <div class="discussion">
303
+
304
+ <p>Returns the value of attribute eval</p>
305
+
306
+
307
+ </div>
308
+ </div>
309
+ <div class="tags">
310
+
311
+ <p class="tag_title">Returns:</p>
312
+ <ul class="return">
313
+
314
+ <li>
315
+
316
+
317
+ <span class='type'>(<tt>Object</tt>)</span>
318
+
319
+
320
+
321
+ &mdash;
322
+ <div class='inline'>
323
+ <p>the current value of eval</p>
324
+ </div>
325
+
326
+ </li>
327
+
328
+ </ul>
329
+
330
+ </div>
331
+ <table class="source_code">
332
+ <tr>
333
+ <td>
334
+ <pre class="lines">
315
335
 
316
336
 
317
337
  12
318
338
  13
319
339
  14</pre>
320
- </td>
321
- <td>
322
- <pre class="code"><span class="info file"># File 'lib/csv_decision/columns.rb', line 12</span>
340
+ </td>
341
+ <td>
342
+ <pre class="code"><span class="info file"># File 'lib/csv_decision2/columns.rb', line 12</span>
323
343
 
324
344
  <span class='kw'>def</span> <span class='id identifier rubyid_eval'>eval</span>
325
345
  <span class='ivar'>@eval</span>
326
346
  <span class='kw'>end</span></pre>
327
- </td>
328
- </tr>
329
- </table>
330
- </div>
331
-
332
-
333
- <span id="function=-instance_method"></span>
334
- <div class="method_details ">
335
- <h3 class="signature " id="function-instance_method">
336
-
337
- #<strong>function</strong> &#x21d2; <tt>Object</tt>
338
-
339
-
340
-
341
-
342
-
343
- </h3><div class="docstring">
344
- <div class="discussion">
345
-
346
- <p>Returns the value of attribute function</p>
347
+ </td>
348
+ </tr>
349
+ </table>
350
+ </div>
347
351
 
348
352
 
349
- </div>
350
- </div>
351
- <div class="tags">
352
-
353
- <p class="tag_title">Returns:</p>
354
- <ul class="return">
355
-
356
- <li>
357
-
358
-
359
- <span class='type'>(<tt>Object</tt>)</span>
360
-
361
-
362
-
363
- &mdash;
364
- <div class='inline'>
365
- <p>the current value of function</p>
366
- </div>
367
-
368
- </li>
369
-
370
- </ul>
371
-
372
- </div><table class="source_code">
373
- <tr>
374
- <td>
375
- <pre class="lines">
353
+ <span id="function=-instance_method"></span>
354
+ <div class="method_details ">
355
+ <h3 class="signature " id="function-instance_method">
356
+
357
+ #<strong>function</strong> &#x21d2; <tt>Object</tt>
358
+
359
+
360
+
361
+
362
+
363
+ </h3>
364
+ <div class="docstring">
365
+ <div class="discussion">
366
+
367
+ <p>Returns the value of attribute function</p>
368
+
369
+
370
+ </div>
371
+ </div>
372
+ <div class="tags">
373
+
374
+ <p class="tag_title">Returns:</p>
375
+ <ul class="return">
376
+
377
+ <li>
378
+
379
+
380
+ <span class='type'>(<tt>Object</tt>)</span>
381
+
382
+
383
+
384
+ &mdash;
385
+ <div class='inline'>
386
+ <p>the current value of function</p>
387
+ </div>
388
+
389
+ </li>
390
+
391
+ </ul>
392
+
393
+ </div>
394
+ <table class="source_code">
395
+ <tr>
396
+ <td>
397
+ <pre class="lines">
376
398
 
377
399
 
378
400
  12
379
401
  13
380
402
  14</pre>
381
- </td>
382
- <td>
383
- <pre class="code"><span class="info file"># File 'lib/csv_decision/columns.rb', line 12</span>
403
+ </td>
404
+ <td>
405
+ <pre class="code"><span class="info file"># File 'lib/csv_decision2/columns.rb', line 12</span>
384
406
 
385
407
  <span class='kw'>def</span> <span class='id identifier rubyid_function'>function</span>
386
408
  <span class='ivar'>@function</span>
387
409
  <span class='kw'>end</span></pre>
388
- </td>
389
- </tr>
390
- </table>
391
- </div>
392
-
393
-
394
- <span id="name=-instance_method"></span>
395
- <div class="method_details ">
396
- <h3 class="signature " id="name-instance_method">
397
-
398
- #<strong>name</strong> &#x21d2; <tt>Object</tt>
399
-
400
-
401
-
402
-
403
-
404
- </h3><div class="docstring">
405
- <div class="discussion">
406
-
407
- <p>Returns the value of attribute name</p>
410
+ </td>
411
+ </tr>
412
+ </table>
413
+ </div>
414
+
415
+
416
+ <span id="name=-instance_method"></span>
417
+ <div class="method_details ">
418
+ <h3 class="signature " id="name-instance_method">
419
+
420
+ #<strong>name</strong> &#x21d2; <tt>Object</tt>
408
421
 
409
422
 
410
- </div>
411
- </div>
412
- <div class="tags">
413
-
414
- <p class="tag_title">Returns:</p>
415
- <ul class="return">
416
-
417
- <li>
418
-
419
-
420
- <span class='type'>(<tt>Object</tt>)</span>
421
-
422
-
423
-
424
- &mdash;
425
- <div class='inline'>
426
- <p>the current value of name</p>
427
- </div>
428
-
429
- </li>
430
-
431
- </ul>
432
-
433
- </div><table class="source_code">
434
- <tr>
435
- <td>
436
- <pre class="lines">
423
+
424
+
425
+
426
+ </h3>
427
+ <div class="docstring">
428
+ <div class="discussion">
429
+
430
+ <p>Returns the value of attribute name</p>
431
+
432
+
433
+ </div>
434
+ </div>
435
+ <div class="tags">
436
+
437
+ <p class="tag_title">Returns:</p>
438
+ <ul class="return">
439
+
440
+ <li>
441
+
442
+
443
+ <span class='type'>(<tt>Object</tt>)</span>
444
+
445
+
446
+
447
+ &mdash;
448
+ <div class='inline'>
449
+ <p>the current value of name</p>
450
+ </div>
451
+
452
+ </li>
453
+
454
+ </ul>
455
+
456
+ </div>
457
+ <table class="source_code">
458
+ <tr>
459
+ <td>
460
+ <pre class="lines">
437
461
 
438
462
 
439
463
  12
440
464
  13
441
465
  14</pre>
442
- </td>
443
- <td>
444
- <pre class="code"><span class="info file"># File 'lib/csv_decision/columns.rb', line 12</span>
466
+ </td>
467
+ <td>
468
+ <pre class="code"><span class="info file"># File 'lib/csv_decision2/columns.rb', line 12</span>
445
469
 
446
470
  <span class='kw'>def</span> <span class='id identifier rubyid_name'>name</span>
447
471
  <span class='ivar'>@name</span>
448
472
  <span class='kw'>end</span></pre>
449
- </td>
450
- </tr>
451
- </table>
452
- </div>
453
-
454
-
455
- <span id="set_if=-instance_method"></span>
456
- <div class="method_details ">
457
- <h3 class="signature " id="set_if-instance_method">
458
-
459
- #<strong>set_if</strong> &#x21d2; <tt>Object</tt>
460
-
461
-
462
-
463
-
464
-
465
- </h3><div class="docstring">
466
- <div class="discussion">
467
-
468
- <p>Returns the value of attribute set_if</p>
473
+ </td>
474
+ </tr>
475
+ </table>
476
+ </div>
469
477
 
470
478
 
471
- </div>
472
- </div>
473
- <div class="tags">
474
-
475
- <p class="tag_title">Returns:</p>
476
- <ul class="return">
477
-
478
- <li>
479
-
480
-
481
- <span class='type'>(<tt>Object</tt>)</span>
482
-
483
-
484
-
485
- &mdash;
486
- <div class='inline'>
487
- <p>the current value of set_if</p>
488
- </div>
489
-
490
- </li>
491
-
492
- </ul>
493
-
494
- </div><table class="source_code">
495
- <tr>
496
- <td>
497
- <pre class="lines">
479
+ <span id="set_if=-instance_method"></span>
480
+ <div class="method_details ">
481
+ <h3 class="signature " id="set_if-instance_method">
482
+
483
+ #<strong>set_if</strong> &#x21d2; <tt>Object</tt>
484
+
485
+
486
+
487
+
488
+
489
+ </h3>
490
+ <div class="docstring">
491
+ <div class="discussion">
492
+
493
+ <p>Returns the value of attribute set_if</p>
494
+
495
+
496
+ </div>
497
+ </div>
498
+ <div class="tags">
499
+
500
+ <p class="tag_title">Returns:</p>
501
+ <ul class="return">
502
+
503
+ <li>
504
+
505
+
506
+ <span class='type'>(<tt>Object</tt>)</span>
507
+
508
+
509
+
510
+ &mdash;
511
+ <div class='inline'>
512
+ <p>the current value of set_if</p>
513
+ </div>
514
+
515
+ </li>
516
+
517
+ </ul>
518
+
519
+ </div>
520
+ <table class="source_code">
521
+ <tr>
522
+ <td>
523
+ <pre class="lines">
498
524
 
499
525
 
500
526
  12
501
527
  13
502
528
  14</pre>
503
- </td>
504
- <td>
505
- <pre class="code"><span class="info file"># File 'lib/csv_decision/columns.rb', line 12</span>
529
+ </td>
530
+ <td>
531
+ <pre class="code"><span class="info file"># File 'lib/csv_decision2/columns.rb', line 12</span>
506
532
 
507
533
  <span class='kw'>def</span> <span class='id identifier rubyid_set_if'>set_if</span>
508
534
  <span class='ivar'>@set_if</span>
509
535
  <span class='kw'>end</span></pre>
510
- </td>
511
- </tr>
512
- </table>
513
- </div>
514
-
515
-
516
- <span id="type=-instance_method"></span>
517
- <div class="method_details ">
518
- <h3 class="signature " id="type-instance_method">
519
-
520
- #<strong>type</strong> &#x21d2; <tt>Object</tt>
521
-
522
-
523
-
524
-
525
-
526
- </h3><div class="docstring">
527
- <div class="discussion">
528
-
529
- <p>Returns the value of attribute type</p>
536
+ </td>
537
+ </tr>
538
+ </table>
539
+ </div>
530
540
 
531
541
 
532
- </div>
533
- </div>
534
- <div class="tags">
535
-
536
- <p class="tag_title">Returns:</p>
537
- <ul class="return">
538
-
539
- <li>
540
-
541
-
542
- <span class='type'>(<tt>Object</tt>)</span>
543
-
544
-
545
-
546
- &mdash;
547
- <div class='inline'>
548
- <p>the current value of type</p>
549
- </div>
550
-
551
- </li>
552
-
553
- </ul>
554
-
555
- </div><table class="source_code">
556
- <tr>
557
- <td>
558
- <pre class="lines">
542
+ <span id="type=-instance_method"></span>
543
+ <div class="method_details ">
544
+ <h3 class="signature " id="type-instance_method">
545
+
546
+ #<strong>type</strong> &#x21d2; <tt>Object</tt>
547
+
548
+
549
+
550
+
551
+
552
+ </h3>
553
+ <div class="docstring">
554
+ <div class="discussion">
555
+
556
+ <p>Returns the value of attribute type</p>
557
+
558
+
559
+ </div>
560
+ </div>
561
+ <div class="tags">
562
+
563
+ <p class="tag_title">Returns:</p>
564
+ <ul class="return">
565
+
566
+ <li>
567
+
568
+
569
+ <span class='type'>(<tt>Object</tt>)</span>
570
+
571
+
572
+
573
+ &mdash;
574
+ <div class='inline'>
575
+ <p>the current value of type</p>
576
+ </div>
577
+
578
+ </li>
579
+
580
+ </ul>
581
+
582
+ </div>
583
+ <table class="source_code">
584
+ <tr>
585
+ <td>
586
+ <pre class="lines">
559
587
 
560
588
 
561
589
  12
562
590
  13
563
591
  14</pre>
564
- </td>
565
- <td>
566
- <pre class="code"><span class="info file"># File 'lib/csv_decision/columns.rb', line 12</span>
592
+ </td>
593
+ <td>
594
+ <pre class="code"><span class="info file"># File 'lib/csv_decision2/columns.rb', line 12</span>
567
595
 
568
596
  <span class='kw'>def</span> <span class='id identifier rubyid_type'>type</span>
569
597
  <span class='ivar'>@type</span>
570
598
  <span class='kw'>end</span></pre>
571
- </td>
572
- </tr>
573
- </table>
574
- </div>
575
-
576
- </div>
599
+ </td>
600
+ </tr>
601
+ </table>
602
+ </div>
577
603
 
604
+ </div>
578
605
 
579
- </div>
580
606
 
581
- <div id="footer">
582
- Generated on Sun Jan 7 14:53:45 2018 by
583
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
584
- 0.9.12 (ruby-2.4.0).
585
- </div>
607
+ </div>
586
608
 
609
+ <div id="footer">
610
+ Generated on Sun Jan 7 14:53:45 2018 by
611
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
612
+ 0.9.12 (ruby-2.4.0).
587
613
  </div>
588
- </body>
589
- </html>
614
+
615
+ </div>
616
+ </body>
617
+
618
+ </html>