lib/rio/if/csv.rb in rio-0.3.3 vs lib/rio/if/csv.rb in rio-0.3.4
- old
+ new
@@ -58,10 +58,10 @@
#
# # iterate through every line but skip the columns 2 and 3 through 5
# rio("afile.csv").csv.nocolumns(2,3..5) { |array_of_fields| ... }
#
# # an array containg all but the first line returning columns 5,6 and 7
- # rio("afile.csv").csv.columns(5..7).nolines[0]
+ # rio("afile.csv").csv.columns(5..7).skiplines[0]
#
# See RIO::Doc::INTRO for complete documentation on csv mode.
def csv(field_separator=',',record_separator=nil,&block)
target.csv(field_separator,record_separator,&block);
self