push(*args)
public
A shortcut for appending multiple fields. Equivalent to:
args.each { |arg| csv_row << arg }
This method returns the row for chaining.
# File lib/csv.rb, line 400
def push(*args)
args.each { |arg| self << arg }
self # for chaining
end