Method: CSV.readlines

Defined in:
lib/csv.rb

.readlines(path, **options) ⇒ Object

:call-seq:

CSV.readlines(source, **options)

Alias for CSV.read.



1794
1795
1796
# File 'lib/csv.rb', line 1794

def readlines(path, **options)
  read(path, **options)
end