Class: CsvComposer::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/csv_composer/base.rb

Direct Known Subclasses

Generic

Instance Method Summary collapse

Instance Method Details

#compose(items, opts = {}) ⇒ Object



4
5
6
7
8
9
# File 'lib/csv_composer/base.rb', line 4

def compose(items, opts = {})
  content = 
  content += write(items, opts)

  export(content, opts)
end