module GogoCsv

Constants

VERSION

Public Instance Methods

_(path='./input.csv', format=:arys) click to toggle source
# File lib/gogo_csv.rb, line 9
def _(path='./input.csv', format=:arys)
  $current_path = path
  arys = CSV.read(
    File.expand_path(path)
  )

  $original_csv = case format
  when :matrix then Matrix[*arys]
  when :arys   then arys
  end
end