module Csv2Psql::Convert

Csv2Psql convert module

Public Class Methods

analyze(paths, opts = {}) click to toggle source
# File lib/csv2psql/convert/convert.rb, line 10
def analyze(paths, opts = {})
  p = Processor.new
  p.analyze(paths, opts)
end
convert(paths, opts = {}) click to toggle source
# File lib/csv2psql/convert/convert.rb, line 15
def convert(paths, opts = {})
  p = Processor.new
  p.convert(paths, opts)
end
generate_schema(paths, opts = {}) click to toggle source
# File lib/csv2psql/convert/convert.rb, line 20
def generate_schema(paths, opts = {})
  p = Processor.new
  p.generate_schema(paths, opts)
end