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::Matchers::Symbol
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::Matchers::Symbol
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::Matchers::Symbol";
19
- relpath = '../../';
20
- </script>
18
+ <script type="text/javascript" charset="utf-8">
19
+ pathId = "CSVDecision2::Matchers::Symbol";
20
+ relpath = '../../';
21
+ </script>
21
22
 
22
23
 
23
24
  <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
@@ -25,270 +26,297 @@
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> &raquo; <span class='title'><span
44
+ class='object_link'><a href="../Matchers.html"
45
+ title="CSVDecision2::Matchers (class)">Matchers</a></span></span>
46
+ &raquo;
47
+ <span class="title">Symbol</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 (S)</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="../Matchers.html" title="CSVDecision::Matchers (class)">Matchers</a></span></span>
41
- &raquo;
42
- <span class="title">Symbol</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::Matchers::Symbol
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"><span class='object_link'><a href="Matcher.html"
78
+ title="CSVDecision2::Matchers::Matcher (class)">Matcher</a></span></span>
79
+
80
+ <ul class="fullTree">
81
+ <li>Object</li>
82
+
83
+ <li class="next"><span class='object_link'><a href="Matcher.html"
84
+ title="CSVDecision2::Matchers::Matcher (class)">Matcher</a></span></li>
85
+
86
+ <li class="next">CSVDecision2::Matchers::Symbol</li>
87
+
88
+ </ul>
89
+ <a href="#" class="inheritanceTree">show all</a>
90
+
91
+ </dd>
92
+ </dl>
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+ <dl>
105
+ <dt>Defined in:</dt>
106
+ <dd>lib/csv_decision2/matchers/symbol.rb</dd>
107
+ </dl>
108
+
60
109
  </div>
61
110
 
62
- <div id="content"><h1>Class: CSVDecision::Matchers::Symbol
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"><span class='object_link'><a href="Matcher.html" title="CSVDecision::Matchers::Matcher (class)">Matcher</a></span></span>
73
-
74
- <ul class="fullTree">
75
- <li>Object</li>
76
-
77
- <li class="next"><span class='object_link'><a href="Matcher.html" title="CSVDecision::Matchers::Matcher (class)">Matcher</a></span></li>
78
-
79
- <li class="next">CSVDecision::Matchers::Symbol</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/matchers/symbol.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>Match cell against a symbolic expression - e.g., :column, &gt; :column. Can
112
- also call a Ruby method pn the column value - e.g, .blank? or !.blank?</p>
111
+ <h2>Overview</h2>
112
+ <div class="docstring">
113
+ <div class="discussion">
114
+ <p class="note private">
115
+ <strong>This class is part of a private API.</strong>
116
+ You should avoid using this class if possible, as it may be removed or be changed in the future.
117
+ </p>
113
118
 
119
+ <p>Match cell against a symbolic expression - e.g., :column, &gt; :column. Can
120
+ also call a Ruby method pn the column value - e.g, .blank? or !.blank?</p>
114
121
 
115
- </div>
116
- </div>
117
- <div class="tags">
118
-
119
122
 
120
- </div>
123
+ </div>
124
+ </div>
125
+ <div class="tags">
126
+
127
+
128
+ </div>
121
129
 
122
130
 
123
131
 
124
132
 
125
133
 
126
134
 
127
-
128
- <h2>
129
- Class Method Summary
130
- <small><a href="#" class="summary_toggle">collapse</a></small>
131
- </h2>
132
135
 
133
- <ul class="summary">
134
-
136
+ <h2>
137
+ Class Method Summary
138
+ <small><a href="#" class="summary_toggle">collapse</a></small>
139
+ </h2>
140
+
141
+ <ul class="summary">
142
+
135
143
  <li class="public ">
136
- <span class="summary_signature">
137
-
138
- <a href="#matches%3F-class_method" title="matches? (class method)">.<strong>matches?</strong>(cell) &#x21d2; false, CSVDecision::Proc </a>
139
-
140
-
141
-
142
- </span>
143
-
144
-
145
-
146
-
147
-
148
-
149
- <span class="private note title">private</span>
150
-
151
-
152
- <span class="summary_desc"><div class='inline'>
153
- <p>Returns false if this cell is not a match; otherwise returns the
154
- <code>CSVDecision::Proc</code> object indicating if this is a constant or
155
- some type of function.</p>
156
- </div></span>
157
-
158
- </li>
159
-
160
-
161
- </ul>
162
-
163
- <h2>
164
- Instance Method Summary
165
- <small><a href="#" class="summary_toggle">collapse</a></small>
166
- </h2>
167
-
168
- <ul class="summary">
169
-
144
+ <span class="summary_signature">
145
+
146
+ <a href="#matches%3F-class_method" title="matches? (class method)">.<strong>matches?</strong>(cell) &#x21d2;
147
+ false, CSVDecision2::Proc </a>
148
+
149
+
150
+
151
+ </span>
152
+
153
+
154
+
155
+
156
+
157
+
158
+ <span class="private note title">private</span>
159
+
160
+
161
+ <span class="summary_desc">
162
+ <div class='inline'>
163
+ <p>Returns false if this cell is not a match; otherwise returns the
164
+ <code>CSVDecision2::Proc</code> object indicating if this is a constant or
165
+ some type of function.
166
+ </p>
167
+ </div>
168
+ </span>
169
+
170
+ </li>
171
+
172
+
173
+ </ul>
174
+
175
+ <h2>
176
+ Instance Method Summary
177
+ <small><a href="#" class="summary_toggle">collapse</a></small>
178
+ </h2>
179
+
180
+ <ul class="summary">
181
+
170
182
  <li class="public ">
171
- <span class="summary_signature">
172
-
173
- <a href="#matches%3F-instance_method" title="#matches? (instance method)">#<strong>matches?</strong>(cell) &#x21d2; false, CSVDecision::Proc </a>
174
-
175
-
176
-
177
- </span>
178
-
179
-
180
-
181
-
182
-
183
-
184
- <span class="private note title">private</span>
185
-
186
-
187
- <span class="summary_desc"><div class='inline'>
188
- <p>Returns false if this cell is not a match; otherwise returns the
189
- <code>CSVDecision::Proc</code> object indicating if this is a constant or
190
- some type of function.</p>
191
- </div></span>
192
-
193
- </li>
194
-
195
-
196
- </ul>
197
-
198
-
199
-
200
-
201
-
202
-
203
-
204
-
205
-
206
-
207
-
208
- <h3 class="inherited">Methods inherited from <span class='object_link'><a href="Matcher.html" title="CSVDecision::Matchers::Matcher (class)">Matcher</a></span></h3>
209
- <p class="inherited"><span class='object_link'><a href="Matcher.html#initialize-instance_method" title="CSVDecision::Matchers::Matcher#initialize (method)">#initialize</a></span>, <span class='object_link'><a href="Matcher.html#ins%3F-instance_method" title="CSVDecision::Matchers::Matcher#ins? (method)">#ins?</a></span>, <span class='object_link'><a href="Matcher.html#outs%3F-instance_method" title="CSVDecision::Matchers::Matcher#outs? (method)">#outs?</a></span></p>
210
- <div id="constructor_details" class="method_details_list">
211
- <h2>Constructor Details</h2>
212
-
213
- <p class="notice">This class inherits a constructor from <span class='object_link'><a href="Matcher.html#initialize-instance_method" title="CSVDecision::Matchers::Matcher#initialize (method)">CSVDecision::Matchers::Matcher</a></span></p>
214
-
215
- </div>
216
-
217
-
218
- <div id="class_method_details" class="method_details_list">
219
- <h2>Class Method Details</h2>
220
-
221
-
222
- <div class="method_details first">
223
- <h3 class="signature first" id="matches?-class_method">
224
-
225
- .<strong>matches?</strong>(cell) &#x21d2; <tt>false</tt>, <tt>CSVDecision::Proc</tt>
226
-
227
-
228
-
229
-
230
-
231
- </h3><div class="docstring">
232
- <div class="discussion">
233
- <p class="note private">
234
- <strong>This method is part of a private API.</strong>
235
- You should avoid using this method if possible, as it may be removed or be changed in the future.
236
- </p>
237
-
238
- <p>Returns false if this cell is not a match; otherwise returns the
239
- <code>CSVDecision::Proc</code> object indicating if this is a constant or
240
- some type of function.</p>
183
+ <span class="summary_signature">
184
+
185
+ <a href="#matches%3F-instance_method" title="#matches? (instance method)">#<strong>matches?</strong>(cell)
186
+ &#x21d2; false, CSVDecision2::Proc </a>
187
+
188
+
189
+
190
+ </span>
191
+
192
+
193
+
194
+
195
+
196
+
197
+ <span class="private note title">private</span>
198
+
199
+
200
+ <span class="summary_desc">
201
+ <div class='inline'>
202
+ <p>Returns false if this cell is not a match; otherwise returns the
203
+ <code>CSVDecision2::Proc</code> object indicating if this is a constant or
204
+ some type of function.
205
+ </p>
206
+ </div>
207
+ </span>
208
+
209
+ </li>
210
+
211
+
212
+ </ul>
213
+
214
+
241
215
 
242
216
 
243
- </div>
244
- </div>
245
- <div class="tags">
246
- <p class="tag_title">Parameters:</p>
247
- <ul class="param">
248
-
249
- <li>
250
-
251
- <span class='name'>cell</span>
252
-
253
-
254
- <span class='type'>(<tt>String</tt>)</span>
255
-
256
-
257
-
258
- &mdash;
259
- <div class='inline'>
260
- <p>Data row cell.</p>
261
- </div>
262
-
263
- </li>
264
-
265
- </ul>
266
-
267
- <p class="tag_title">Returns:</p>
268
- <ul class="return">
269
-
270
- <li>
271
-
272
-
273
- <span class='type'>(<tt>false</tt>, <tt>CSVDecision::Proc</tt>)</span>
274
-
275
-
276
-
277
- &mdash;
278
- <div class='inline'>
279
- <p>Returns false if this cell is not a match; otherwise returns the
280
- <code>CSVDecision::Proc</code> object indicating if this is a constant or
281
- some type of function.</p>
282
- </div>
283
-
284
- </li>
285
-
286
- </ul>
287
-
288
- </div><table class="source_code">
289
- <tr>
290
- <td>
291
- <pre class="lines">
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+ <h3 class="inherited">Methods inherited from <span class='object_link'><a href="Matcher.html"
225
+ title="CSVDecision2::Matchers::Matcher (class)">Matcher</a></span></h3>
226
+ <p class="inherited"><span class='object_link'><a href="Matcher.html#initialize-instance_method"
227
+ title="CSVDecision2::Matchers::Matcher#initialize (method)">#initialize</a></span>, <span
228
+ class='object_link'><a href="Matcher.html#ins%3F-instance_method"
229
+ title="CSVDecision2::Matchers::Matcher#ins? (method)">#ins?</a></span>, <span class='object_link'><a
230
+ href="Matcher.html#outs%3F-instance_method"
231
+ title="CSVDecision2::Matchers::Matcher#outs? (method)">#outs?</a></span></p>
232
+ <div id="constructor_details" class="method_details_list">
233
+ <h2>Constructor Details</h2>
234
+
235
+ <p class="notice">This class inherits a constructor from <span class='object_link'><a
236
+ href="Matcher.html#initialize-instance_method"
237
+ title="CSVDecision2::Matchers::Matcher#initialize (method)">CSVDecision2::Matchers::Matcher</a></span></p>
238
+
239
+ </div>
240
+
241
+
242
+ <div id="class_method_details" class="method_details_list">
243
+ <h2>Class Method Details</h2>
244
+
245
+
246
+ <div class="method_details first">
247
+ <h3 class="signature first" id="matches?-class_method">
248
+
249
+ .<strong>matches?</strong>(cell) &#x21d2; <tt>false</tt>, <tt>CSVDecision2::Proc</tt>
250
+
251
+
252
+
253
+
254
+
255
+ </h3>
256
+ <div class="docstring">
257
+ <div class="discussion">
258
+ <p class="note private">
259
+ <strong>This method is part of a private API.</strong>
260
+ You should avoid using this method if possible, as it may be removed or be changed in the future.
261
+ </p>
262
+
263
+ <p>Returns false if this cell is not a match; otherwise returns the
264
+ <code>CSVDecision2::Proc</code> object indicating if this is a constant or
265
+ some type of function.
266
+ </p>
267
+
268
+
269
+ </div>
270
+ </div>
271
+ <div class="tags">
272
+ <p class="tag_title">Parameters:</p>
273
+ <ul class="param">
274
+
275
+ <li>
276
+
277
+ <span class='name'>cell</span>
278
+
279
+
280
+ <span class='type'>(<tt>String</tt>)</span>
281
+
282
+
283
+
284
+ &mdash;
285
+ <div class='inline'>
286
+ <p>Data row cell.</p>
287
+ </div>
288
+
289
+ </li>
290
+
291
+ </ul>
292
+
293
+ <p class="tag_title">Returns:</p>
294
+ <ul class="return">
295
+
296
+ <li>
297
+
298
+
299
+ <span class='type'>(<tt>false</tt>, <tt>CSVDecision2::Proc</tt>)</span>
300
+
301
+
302
+
303
+ &mdash;
304
+ <div class='inline'>
305
+ <p>Returns false if this cell is not a match; otherwise returns the
306
+ <code>CSVDecision2::Proc</code> object indicating if this is a constant or
307
+ some type of function.
308
+ </p>
309
+ </div>
310
+
311
+ </li>
312
+
313
+ </ul>
314
+
315
+ </div>
316
+ <table class="source_code">
317
+ <tr>
318
+ <td>
319
+ <pre class="lines">
292
320
 
293
321
 
294
322
  132
@@ -300,9 +328,9 @@ some type of function.</p>
300
328
  138
301
329
  139
302
330
  140</pre>
303
- </td>
304
- <td>
305
- <pre class="code"><span class="info file"># File 'lib/csv_decision/matchers/symbol.rb', line 132</span>
331
+ </td>
332
+ <td>
333
+ <pre class="code"><span class="info file"># File 'lib/csv_decision2/matchers/symbol.rb', line 132</span>
306
334
 
307
335
  <span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_matches?'>matches?</span><span class='lparen'>(</span><span class='id identifier rubyid_cell'>cell</span><span class='rparen'>)</span>
308
336
  <span class='kw'>return</span> <span class='kw'>false</span> <span class='kw'>unless</span> <span class='lparen'>(</span><span class='id identifier rubyid_match'>match</span> <span class='op'>=</span> <span class='const'>SYMBOL_COMPARE_RE</span><span class='period'>.</span><span class='id identifier rubyid_match'>match</span><span class='lparen'>(</span><span class='id identifier rubyid_cell'>cell</span><span class='rparen'>)</span><span class='rparen'>)</span>
@@ -313,114 +341,119 @@ some type of function.</p>
313
341
 
314
342
  <span class='id identifier rubyid_comparator_type'>comparator_type</span><span class='lparen'>(</span><span class='label'>comparator:</span> <span class='id identifier rubyid_comparator'>comparator</span> <span class='op'>||</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>=</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='label'>type:</span> <span class='id identifier rubyid_type'>type</span><span class='comma'>,</span> <span class='label'>name:</span> <span class='id identifier rubyid_match'>match</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>name</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_to_sym'>to_sym</span><span class='rparen'>)</span>
315
343
  <span class='kw'>end</span></pre>
316
- </td>
317
- </tr>
318
- </table>
319
- </div>
320
-
321
- </div>
344
+ </td>
345
+ </tr>
346
+ </table>
347
+ </div>
322
348
 
323
- <div id="instance_method_details" class="method_details_list">
324
- <h2>Instance Method Details</h2>
349
+ </div>
325
350
 
326
-
327
- <div class="method_details first">
328
- <h3 class="signature first" id="matches?-instance_method">
329
-
330
- #<strong>matches?</strong>(cell) &#x21d2; <tt>false</tt>, <tt>CSVDecision::Proc</tt>
331
-
351
+ <div id="instance_method_details" class="method_details_list">
352
+ <h2>Instance Method Details</h2>
332
353
 
333
-
334
354
 
335
-
336
- </h3><div class="docstring">
337
- <div class="discussion">
338
- <p class="note private">
339
- <strong>This method is part of a private API.</strong>
340
- You should avoid using this method if possible, as it may be removed or be changed in the future.
341
- </p>
355
+ <div class="method_details first">
356
+ <h3 class="signature first" id="matches?-instance_method">
342
357
 
343
- <p>Returns false if this cell is not a match; otherwise returns the
344
- <code>CSVDecision::Proc</code> object indicating if this is a constant or
345
- some type of function.</p>
358
+ #<strong>matches?</strong>(cell) &#x21d2; <tt>false</tt>, <tt>CSVDecision2::Proc</tt>
359
+
360
+
361
+
362
+
363
+
364
+ </h3>
365
+ <div class="docstring">
366
+ <div class="discussion">
367
+ <p class="note private">
368
+ <strong>This method is part of a private API.</strong>
369
+ You should avoid using this method if possible, as it may be removed or be changed in the future.
370
+ </p>
371
+
372
+ <p>Returns false if this cell is not a match; otherwise returns the
373
+ <code>CSVDecision2::Proc</code> object indicating if this is a constant or
374
+ some type of function.
375
+ </p>
376
+
377
+
378
+ </div>
379
+ </div>
380
+ <div class="tags">
381
+ <p class="tag_title">Parameters:</p>
382
+ <ul class="param">
383
+
384
+ <li>
385
+
386
+ <span class='name'>cell</span>
387
+
388
+
389
+ <span class='type'>(<tt>String</tt>)</span>
346
390
 
347
391
 
348
- </div>
349
- </div>
350
- <div class="tags">
351
- <p class="tag_title">Parameters:</p>
352
- <ul class="param">
353
-
354
- <li>
355
-
356
- <span class='name'>cell</span>
357
-
358
-
359
- <span class='type'>(<tt>String</tt>)</span>
360
-
361
-
362
-
363
- &mdash;
364
- <div class='inline'>
365
- <p>Data row cell.</p>
366
- </div>
367
-
368
- </li>
369
-
370
- </ul>
371
-
372
- <p class="tag_title">Returns:</p>
373
- <ul class="return">
374
-
375
- <li>
376
-
377
-
378
- <span class='type'>(<tt>false</tt>, <tt>CSVDecision::Proc</tt>)</span>
379
-
380
-
381
-
382
- &mdash;
383
- <div class='inline'>
384
- <p>Returns false if this cell is not a match; otherwise returns the
385
- <code>CSVDecision::Proc</code> object indicating if this is a constant or
386
- some type of function.</p>
387
- </div>
388
-
389
- </li>
390
-
391
- </ul>
392
-
393
- </div><table class="source_code">
394
- <tr>
395
- <td>
396
- <pre class="lines">
392
+
393
+ &mdash;
394
+ <div class='inline'>
395
+ <p>Data row cell.</p>
396
+ </div>
397
+
398
+ </li>
399
+
400
+ </ul>
401
+
402
+ <p class="tag_title">Returns:</p>
403
+ <ul class="return">
404
+
405
+ <li>
406
+
407
+
408
+ <span class='type'>(<tt>false</tt>, <tt>CSVDecision2::Proc</tt>)</span>
409
+
410
+
411
+
412
+ &mdash;
413
+ <div class='inline'>
414
+ <p>Returns false if this cell is not a match; otherwise returns the
415
+ <code>CSVDecision2::Proc</code> object indicating if this is a constant or
416
+ some type of function.
417
+ </p>
418
+ </div>
419
+
420
+ </li>
421
+
422
+ </ul>
423
+
424
+ </div>
425
+ <table class="source_code">
426
+ <tr>
427
+ <td>
428
+ <pre class="lines">
397
429
 
398
430
 
399
431
  144
400
432
  145
401
433
  146</pre>
402
- </td>
403
- <td>
404
- <pre class="code"><span class="info file"># File 'lib/csv_decision/matchers/symbol.rb', line 144</span>
434
+ </td>
435
+ <td>
436
+ <pre class="code"><span class="info file"># File 'lib/csv_decision2/matchers/symbol.rb', line 144</span>
405
437
 
406
438
  <span class='kw'>def</span> <span class='id identifier rubyid_matches?'>matches?</span><span class='lparen'>(</span><span class='id identifier rubyid_cell'>cell</span><span class='rparen'>)</span>
407
- <span class='const'><span class='object_link'><a href="" title="CSVDecision::Matchers::Symbol (class)">Symbol</a></span></span><span class='period'>.</span><span class='id identifier rubyid_matches?'><span class='object_link'><a href="#matches%3F-class_method" title="CSVDecision::Matchers::Symbol.matches? (method)">matches?</a></span></span><span class='lparen'>(</span><span class='id identifier rubyid_cell'>cell</span><span class='rparen'>)</span>
439
+ <span class='const'><span class='object_link'><a href="" title="CSVDecision2::Matchers::Symbol (class)">Symbol</a></span></span><span class='period'>.</span><span class='id identifier rubyid_matches?'><span class='object_link'><a href="#matches%3F-class_method" title="CSVDecision2::Matchers::Symbol.matches? (method)">matches?</a></span></span><span class='lparen'>(</span><span class='id identifier rubyid_cell'>cell</span><span class='rparen'>)</span>
408
440
  <span class='kw'>end</span></pre>
409
- </td>
410
- </tr>
411
- </table>
412
- </div>
413
-
414
- </div>
441
+ </td>
442
+ </tr>
443
+ </table>
444
+ </div>
415
445
 
416
- </div>
446
+ </div>
417
447
 
418
- <div id="footer">
419
- Generated on Sun Feb 11 10:26:09 2018 by
420
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
421
- 0.9.12 (ruby-2.4.0).
422
- </div>
448
+ </div>
423
449
 
450
+ <div id="footer">
451
+ Generated on Sun Feb 11 10:26:09 2018 by
452
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
453
+ 0.9.12 (ruby-2.4.0).
424
454
  </div>
425
- </body>
426
- </html>
455
+
456
+ </div>
457
+ </body>
458
+
459
+ </html>