I have a rake file that pulls in data from an external CSV file and enumerates through it with:
CSV.foreach(file, :headers => true) do |row|
What is the most effective way (in ruby) to specify the starting point within the spreadsheet?
:headers => true allows me to start importing from the second line, but what if I want to start a line 20?