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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a1c5b8a4584339463eb67ce93820087378a62c7edc0b63b61c199b008739604
4
- data.tar.gz: e091e00ea144d06fefc692e23639e282f64150305ee5864354d53b91928d9f0d
3
+ metadata.gz: 4a6eb1af22f6cb0b42f7823cd9c3ec327bc0d31846a25c0d744b032315ab7a9d
4
+ data.tar.gz: 1c42dbf2d3fab236858ffcadb4b80e8d8f5a000f77bc362d4839f27f80ef9180
5
5
  SHA512:
6
- metadata.gz: 744dd6194daf1902d0eab2e302b82cab87c15c3fe9e0413b7f32b68138ccb3267f6601110fec732a8738596b403bb55a7b9b855e20adbaa0eb3f9dc982b53d5b
7
- data.tar.gz: d977d550fab93f91ecae7b6ba668383c6bbc14538e7dd798d632cc2e986bc4a9eb89ff141db5d25d89efd0c63391e7858a4f761745a4294dfaa70eb131384ee4
6
+ metadata.gz: 6d0a7564c0360ac773ac58e7930b72503f74c65f5294aaae5b49cb642bf71ce55c4e482e060ae24b3a8a90b3d250d0845b9b5b04137879db0993fbf79047a1d5
7
+ data.tar.gz: a9233678ba3792b61161308287a8d272025c17fedb4f09edaf7171c192f51652a791e0251b2a372eb2d04eb86d0ecdd24a7d2a640adcbe5addf86bb15d38def5
data/Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
1
  FROM ruby:3.3.0
2
2
  RUN mkdir -p /app
3
3
  WORKDIR /app
4
- COPY Gemfile csv_decision.gemspec ./
4
+ COPY Gemfile csv_decision2.gemspec ./
5
5
  RUN gem update bundler
6
6
  # RUN bundle install
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # CSV Decision
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/csv_decision.svg)](https://badge.fury.io/rb/csv_decision)
4
- [![Build Status](https://travis-ci.org/bpvickers/csv_decision.svg?branch=master)](https://travis-ci.org/bpvickers/csv_decision)
5
- [![Coverage Status](https://coveralls.io/repos/github/bpvickers/csv_decision/badge.svg?branch=master)](https://coveralls.io/github/bpvickers/csv_decision?branch=master)
6
- [![Maintainability](https://api.codeclimate.com/v1/badges/466a6c52e8f6a3840967/maintainability)](https://codeclimate.com/github/bpvickers/csv_decision/maintainability)
3
+ [![Gem Version](https://badge.fury.io/rb/csv_decision2.svg)](https://badge.fury.io/rb/csv_decision)
4
+ [![Build Status](https://travis-ci.org/bpvickers/csv_decision2.svg?branch=master)](https://travis-ci.org/bpvickers/csv_decision)
5
+ [![Coverage Status](https://coveralls.io/repos/github/bpvickers/csv_decision2/badge.svg?branch=master)](https://coveralls.io/github/bpvickers/csv_decision?branch=master)
6
+ [![Maintainability](https://api.codeclimate.com/v1/badges/466a6c52e8f6a3840967/maintainability)](https://codeclimate.com/github/bpvickers/csv_decision2/maintainability)
7
7
  [![License](http://img.shields.io/badge/license-MIT-yellowgreen.svg)](#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 = CSVDecision.parse(data)
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 = CSVDecision.parse(Pathname('spec/data/valid/simple_example.csv'))
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 = CSVDecision.parse(data, first_match: false)
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/csv_decision/table_spec.rb`.
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/csv_decision/parse.rb` and `lib/csv_decision/table.rb`.
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 = CSVDecision.parse(data)
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 = CSVDecision.parse(data)
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/csv_decision/examples_spec.rb`.
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 = CSVDecision.parse(data)
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 = CSVDecision.parse(data)
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 = CSVDecision.parse(data)
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 = CSVDecision.parse(data, first_match: false)
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/csv_decision'
7
+ require_relative '../lib/csv_decision2'
8
8
 
9
- SPEC_DATA_VALID ||= File.join(CSVDecision.root, 'spec', 'data', 'valid')
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 = CSVDecision.parse(data, csv_options)
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] = CSVDecision.parse(data, CSV_OPTIONS)
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 { CSVDecision.parse(data) }
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
-
@@ -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.1'
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/csv_decision.git'
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
- <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>
7
- Exception: CSVDecision::CellValidationError
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
  &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::CellValidationError";
19
- relpath = '../';
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
- </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 (C)</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">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="main" tabindex="-1">
36
- <div id="header">
37
- <div id="menu">
38
-
39
- <a href="../_index.html">Index (C)</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">CellValidationError</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>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
- <div id="content"><h1>Exception: CSVDecision::CellValidationError
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
- </body>
143
- </html>
146
+
147
+ </div>
148
+ </body>
149
+
150
+ </html>