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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a6eb1af22f6cb0b42f7823cd9c3ec327bc0d31846a25c0d744b032315ab7a9d
|
|
4
|
+
data.tar.gz: 1c42dbf2d3fab236858ffcadb4b80e8d8f5a000f77bc362d4839f27f80ef9180
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d0a7564c0360ac773ac58e7930b72503f74c65f5294aaae5b49cb642bf71ce55c4e482e060ae24b3a8a90b3d250d0845b9b5b04137879db0993fbf79047a1d5
|
|
7
|
+
data.tar.gz: a9233678ba3792b61161308287a8d272025c17fedb4f09edaf7171c192f51652a791e0251b2a372eb2d04eb86d0ecdd24a7d2a640adcbe5addf86bb15d38def5
|
data/Dockerfile
CHANGED
data/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# CSV Decision
|
|
2
2
|
|
|
3
|
-
[](https://codeclimate.com/github/bpvickers/
|
|
3
|
+
[](https://badge.fury.io/rb/csv_decision)
|
|
4
|
+
[](https://travis-ci.org/bpvickers/csv_decision)
|
|
5
|
+
[](https://coveralls.io/github/bpvickers/csv_decision?branch=master)
|
|
6
|
+
[](https://codeclimate.com/github/bpvickers/csv_decision2/maintainability)
|
|
7
7
|
[](#license)
|
|
8
8
|
|
|
9
9
|
### INFORMATION
|
|
@@ -93,7 +93,7 @@ Here's the example as code:
|
|
|
93
93
|
, , Zach
|
|
94
94
|
DATA
|
|
95
95
|
|
|
96
|
-
table =
|
|
96
|
+
table = CSVDecision2.parse(data)
|
|
97
97
|
|
|
98
98
|
table.decide(topic: 'finance', region: 'Europe') #=> { team_member: 'Donald' }
|
|
99
99
|
table.decide(topic: 'sports', region: nil) #=> { team_member: 'Bob' }
|
|
@@ -109,20 +109,20 @@ If you have cloned this gem's git repo, then the example can also be run by load
|
|
|
109
109
|
the table from a CSV file:
|
|
110
110
|
|
|
111
111
|
```ruby
|
|
112
|
-
table =
|
|
112
|
+
table = CSVDecision2.parse(Pathname('spec/data/valid/simple_example.csv'))
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
We can also load this same table using the option: `first_match: false`, which means that
|
|
116
116
|
_all_ matching rows will be accumulated into an array of hashes.
|
|
117
117
|
|
|
118
118
|
```ruby
|
|
119
|
-
table =
|
|
119
|
+
table = CSVDecision2.parse(data, first_match: false)
|
|
120
120
|
table.decide(topic: 'finance', region: 'Europe') #=> { team_member: %w[Donald Ernest Zach] }
|
|
121
121
|
```
|
|
122
122
|
|
|
123
|
-
For more examples see `spec/
|
|
123
|
+
For more examples see `spec/csv_decision2/table_spec.rb`.
|
|
124
124
|
Complete documentation of all table parameters is in the code - see
|
|
125
|
-
`lib/
|
|
125
|
+
`lib/csv_decision2/parse.rb` and `lib/csv_decision2/table.rb`.
|
|
126
126
|
|
|
127
127
|
### CSV Decision features
|
|
128
128
|
|
|
@@ -163,7 +163,7 @@ For example:
|
|
|
163
163
|
:=100.0, :=100.0
|
|
164
164
|
DATA
|
|
165
165
|
|
|
166
|
-
table =
|
|
166
|
+
table = CSVDecision2.parse(data)
|
|
167
167
|
table.decide(constant: nil) # returns value: nil
|
|
168
168
|
table.decide(constant: 0) # returns value: 0
|
|
169
169
|
table.decide(constant: BigDecimal('100.0')) # returns value: BigDecimal('100.0')
|
|
@@ -183,7 +183,7 @@ For example:
|
|
|
183
183
|
, , no
|
|
184
184
|
DATA
|
|
185
185
|
|
|
186
|
-
table =
|
|
186
|
+
table = CSVDecision2.parse(data)
|
|
187
187
|
table.decide(node: 0, parent: 0) # returns top?: 'yes'
|
|
188
188
|
table.decide(node: 1, parent: 0) # returns top?: 'no'
|
|
189
189
|
```
|
|
@@ -206,7 +206,7 @@ In addition, you can also apply a Ruby 0-arity method - e.g., `.present?` or `.n
|
|
|
206
206
|
also supported - e.g., `!.nil?`. Note that `.nil?` can also be written as `:= nil?`, and `!.nil?`
|
|
207
207
|
as `:= !nil?`, depending on preference.
|
|
208
208
|
|
|
209
|
-
For more simple examples see `spec/
|
|
209
|
+
For more simple examples see `spec/csv_decision2/examples_spec.rb`.
|
|
210
210
|
|
|
211
211
|
#### Input `guard` conditions
|
|
212
212
|
|
|
@@ -224,7 +224,7 @@ data = <<~DATA
|
|
|
224
224
|
, , := nil, := nil, := nil
|
|
225
225
|
DATA
|
|
226
226
|
|
|
227
|
-
table =
|
|
227
|
+
table = CSVDecision2.parse(data)
|
|
228
228
|
table.decide(country: 'US', CUSIP: '123456789') #=> { ID: '123456789', ID_type: 'CUSIP', len: 9 }
|
|
229
229
|
table.decide(country: 'EU', CUSIP: '123456789', ISIN:'123456789012')
|
|
230
230
|
#=> { ID: '123456789012', ID_type: 'ISIN', len: 12 }
|
|
@@ -250,7 +250,7 @@ data = <<~DATA
|
|
|
250
250
|
, :CUSIP.present?, :CUSIP, DUMMY, :ID.length,
|
|
251
251
|
DATA
|
|
252
252
|
|
|
253
|
-
table =
|
|
253
|
+
table = CSVDecision2.parse(data)
|
|
254
254
|
table.decide(country: 'US', CUSIP: '123456789') #=> {ID: '123456789', ID_type: 'CUSIP9', len: 9}
|
|
255
255
|
table.decide(CUSIP: '12345678', ISIN:'1234567890') #=> {ID: '1234567890', ID_type: 'DUMMY', len: 10}
|
|
256
256
|
```
|
|
@@ -277,7 +277,7 @@ data = <<~DATA
|
|
|
277
277
|
!=US, :ISIN.present?, PRIVATE, :ISIN, :PAID.length,
|
|
278
278
|
DATA
|
|
279
279
|
|
|
280
|
-
table =
|
|
280
|
+
table = CSVDecision2.parse(data)
|
|
281
281
|
table.decide(CUSIP: '1234567890', class: 'Private') #=> {PAID: '1234567890', len: 10}
|
|
282
282
|
table.decide(ISIN: '123456789012', country: 'GB', class: 'private') #=> {PAID: '123456789012', len: 12}
|
|
283
283
|
|
|
@@ -296,7 +296,7 @@ data = <<~DATA
|
|
|
296
296
|
payload, , :amount
|
|
297
297
|
payload, ref_data, :account_id
|
|
298
298
|
DATA
|
|
299
|
-
table =
|
|
299
|
+
table = CSVDecision2.parse(data, first_match: false)
|
|
300
300
|
|
|
301
301
|
input = {
|
|
302
302
|
header: {
|
|
@@ -4,9 +4,9 @@ require 'benchmark/ips'
|
|
|
4
4
|
require 'benchmark/memory'
|
|
5
5
|
require 'rufus/decision'
|
|
6
6
|
|
|
7
|
-
require_relative '../lib/
|
|
7
|
+
require_relative '../lib/csv_decision2'
|
|
8
8
|
|
|
9
|
-
SPEC_DATA_VALID ||= File.join(
|
|
9
|
+
SPEC_DATA_VALID ||= File.join(CSVDecision2.root, 'spec', 'data', 'valid')
|
|
10
10
|
|
|
11
11
|
CSV_OPTIONS = { regexp_implicit: true }.freeze
|
|
12
12
|
RUFUS_OPTIONS = { open_uri: false, ruby_eval: false }.freeze
|
|
@@ -58,7 +58,7 @@ puts ""
|
|
|
58
58
|
data = Pathname(File.join(SPEC_DATA_VALID, test[:data]))
|
|
59
59
|
|
|
60
60
|
rufus_table = Rufus::Decision::Table.new(data.to_s, rufus_options)
|
|
61
|
-
csv_table =
|
|
61
|
+
csv_table = CSVDecision2.parse(data, csv_options)
|
|
62
62
|
|
|
63
63
|
# Prepare input hash
|
|
64
64
|
input = test[:input].deep_dup
|
|
@@ -117,7 +117,7 @@ def benchmark_memory(test, quiet: false)
|
|
|
117
117
|
|
|
118
118
|
GC.start
|
|
119
119
|
x.report("CSV Decision new table - #{name} ") do
|
|
120
|
-
csv_tables[key] =
|
|
120
|
+
csv_tables[key] = CSVDecision2.parse(data, CSV_OPTIONS)
|
|
121
121
|
end
|
|
122
122
|
|
|
123
123
|
x.compare!
|
|
@@ -143,7 +143,7 @@ benchmarks.each do |test|
|
|
|
143
143
|
Benchmark.ips do |x|
|
|
144
144
|
GC.start
|
|
145
145
|
x.report("CSV new table - #{name}: ") do |count|
|
|
146
|
-
count.times {
|
|
146
|
+
count.times { CSVDecision2.parse(data) }
|
|
147
147
|
end
|
|
148
148
|
|
|
149
149
|
GC.start
|
|
@@ -154,5 +154,3 @@ benchmarks.each do |test|
|
|
|
154
154
|
x.compare!
|
|
155
155
|
end
|
|
156
156
|
end
|
|
157
|
-
|
|
158
|
-
|
data/csv_decision2.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'csv_decision2'
|
|
8
|
-
spec.version = '0.5.
|
|
8
|
+
spec.version = '0.5.2'
|
|
9
9
|
spec.authors = ['Imamul Akhyar']
|
|
10
10
|
spec.email = ['imamulakhyar93@gmail.com']
|
|
11
11
|
spec.description = 'CSV based Ruby decision tables.'
|
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
decision table files which can then be used to execute complex conditional
|
|
15
15
|
logic against an input hash, producing a decision as an output hash.
|
|
16
16
|
DESC
|
|
17
|
-
spec.homepage = 'https://github.com/imamulakhyar93/
|
|
17
|
+
spec.homepage = 'https://github.com/imamulakhyar93/csv_decision2.git'
|
|
18
18
|
spec.license = 'MIT'
|
|
19
19
|
|
|
20
20
|
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
|
@@ -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
|
+
Exception: CSVDecision2::CellValidationError
|
|
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::CellValidationError";
|
|
20
|
+
relpath = '../';
|
|
21
|
+
</script>
|
|
21
22
|
|
|
22
23
|
|
|
23
24
|
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
|
@@ -25,119 +26,125 @@
|
|
|
25
26
|
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
|
26
27
|
|
|
27
28
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
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 (C)</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">CellValidationError</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="
|
|
36
|
-
<
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
64
|
+
<div id="content">
|
|
65
|
+
<h1>Exception: CSVDecision2::CellValidationError
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
</h1>
|
|
70
|
+
<div class="box_info">
|
|
71
|
+
|
|
72
|
+
<dl>
|
|
73
|
+
<dt>Inherits:</dt>
|
|
74
|
+
<dd>
|
|
75
|
+
<span class="inheritName"><span class='object_link'><a href="Error.html"
|
|
76
|
+
title="CSVDecision2::Error (class)">Error</a></span></span>
|
|
77
|
+
|
|
78
|
+
<ul class="fullTree">
|
|
79
|
+
<li>Object</li>
|
|
80
|
+
|
|
81
|
+
<li class="next">StandardError</li>
|
|
82
|
+
|
|
83
|
+
<li class="next"><span class='object_link'><a href="Error.html"
|
|
84
|
+
title="CSVDecision2::Error (class)">Error</a></span></li>
|
|
85
|
+
|
|
86
|
+
<li class="next">CSVDecision2::CellValidationError</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/parse.rb</dd>
|
|
107
|
+
</dl>
|
|
108
|
+
|
|
60
109
|
</div>
|
|
61
110
|
|
|
62
|
-
<
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
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="Error.html" title="CSVDecision::Error (class)">Error</a></span></span>
|
|
73
|
-
|
|
74
|
-
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
76
|
-
|
|
77
|
-
<li class="next">StandardError</li>
|
|
78
|
-
|
|
79
|
-
<li class="next"><span class='object_link'><a href="Error.html" title="CSVDecision::Error (class)">Error</a></span></li>
|
|
80
|
-
|
|
81
|
-
<li class="next">CSVDecision::CellValidationError</li>
|
|
82
|
-
|
|
83
|
-
</ul>
|
|
84
|
-
<a href="#" class="inheritanceTree">show all</a>
|
|
85
|
-
|
|
86
|
-
</dd>
|
|
87
|
-
</dl>
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
<dl>
|
|
100
|
-
<dt>Defined in:</dt>
|
|
101
|
-
<dd>lib/csv_decision/parse.rb</dd>
|
|
102
|
-
</dl>
|
|
103
|
-
|
|
104
|
-
</div>
|
|
105
|
-
|
|
106
|
-
<h2>Overview</h2><div class="docstring">
|
|
107
|
-
<div class="discussion">
|
|
108
|
-
|
|
109
|
-
<p>Error validating a cell when parsing input table cell data.</p>
|
|
111
|
+
<h2>Overview</h2>
|
|
112
|
+
<div class="docstring">
|
|
113
|
+
<div class="discussion">
|
|
110
114
|
|
|
115
|
+
<p>Error validating a cell when parsing input table cell data.</p>
|
|
111
116
|
|
|
112
|
-
</div>
|
|
113
|
-
</div>
|
|
114
|
-
<div class="tags">
|
|
115
|
-
|
|
116
117
|
|
|
117
|
-
</div>
|
|
118
|
+
</div>
|
|
119
|
+
</div>
|
|
120
|
+
<div class="tags">
|
|
118
121
|
|
|
119
122
|
|
|
123
|
+
</div>
|
|
120
124
|
|
|
121
125
|
|
|
122
126
|
|
|
123
127
|
|
|
124
128
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
129
|
|
|
133
|
-
</div>
|
|
134
130
|
|
|
135
|
-
<div id="footer">
|
|
136
|
-
Generated on Sun Feb 11 10:26:07 2018 by
|
|
137
|
-
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
138
|
-
0.9.12 (ruby-2.4.0).
|
|
139
|
-
</div>
|
|
140
131
|
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
</div>
|
|
140
|
+
|
|
141
|
+
<div id="footer">
|
|
142
|
+
Generated on Sun Feb 11 10:26:07 2018 by
|
|
143
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
144
|
+
0.9.12 (ruby-2.4.0).
|
|
141
145
|
</div>
|
|
142
|
-
|
|
143
|
-
</
|
|
146
|
+
|
|
147
|
+
</div>
|
|
148
|
+
</body>
|
|
149
|
+
|
|
150
|
+
</html>
|