Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/as_csv/core_ext/array.rb

Instance Method Summary collapse

Instance Method Details

#to_csv_with_builder(opts = {}) ⇒ Object Also known as: to_csv



6
7
8
# File 'lib/as_csv/core_ext/array.rb', line 6

def to_csv_with_builder(opts={})
  use_csv_builder? and csv_builder(opts).to_csv or to_csv_without_builder
end