push(*rows)
A shortcut for appending multiple rows. Equivalent to:
rows.each { |row| self << row }
This method returns the table for chaining.
# File lib/csv.rb, line 791 def push(*rows) rows.each { |row| self << row } self # for chaining end