Class: String

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

Instance Method Summary collapse

Instance Method Details

#csv_from_table(options = {}) ⇒ Object



7
8
9
10
11
# File 'lib/csv_from_table.rb', line 7

def csv_from_table(options={})
  @csv_from_table = CSVFromTable.new
  array = @csv_from_table.ar_from_table(self, options)
  @csv_from_table.ar_to_csv(array)
end