class TableSaw::Formats::Base

Attributes

options[R]
table_name[R]

Public Class Methods

new(table_name, options: {}) click to toggle source
# File lib/table_saw/formats/base.rb, line 8
def initialize(table_name, options: {})
  @table_name = table_name
  @options = options
end

Public Instance Methods

coder() click to toggle source
# File lib/table_saw/formats/base.rb, line 25
def coder
end
dump_row(_row) click to toggle source
# File lib/table_saw/formats/base.rb, line 21
def dump_row(_row)
  raise NotImplementedError
end
header() click to toggle source
# File lib/table_saw/formats/base.rb, line 13
def header
  raise NotImplementedError
end