I have a CSV file that contains blank rows like this:
row A
row B
row C
row D
How should I proceed to remove those blank rows to have:
row A
row B
row C
row D
I found many topics on this subject for other languages but none in Ruby.