Method: CSVRow#push

Defined in:
lib/csvgen.rb

#push(*args) ⇒ Object

Append columns



78
79
80
81
82
83
# File 'lib/csvgen.rb', line 78

def push(*args)
  args.each do |x|
    @cols.push(x)
  end
  self
end