class Csv2hash::DataWrapper

Attributes

data[RW]
errors[RW]
valid[RW]

Public Class Methods

new() click to toggle source
# File lib/csv2hash/data_wrapper.rb, line 6
def initialize
  self.valid = true
  self.data, self.errors = [], []
end

Public Instance Methods

valid?() click to toggle source
# File lib/csv2hash/data_wrapper.rb, line 11
def valid?() valid ; end