class CSV::Table

Extend CSV::Table with .lint(…) method

Public Instance Methods

lint(checks, opts = {}) click to toggle source
# File lib/csv/probe.rb, line 47
def lint(checks, opts = {})
  opts[:headers] = true unless opts.key?(:headers) # CSV::Table has always headers, hence set :headers = true
  Probe.lint_rows(self, checks, opts)
end