Class: ActiveSupport

Inherits:
Object
  • Object
show all
Defined in:
lib/csv_exporter/core_ext/active_support.rb

Instance Method Summary collapse

Instance Method Details

#csv_export(hash = {}, filename = nil) ⇒ Object



3
4
5
6
# File 'lib/csv_exporter/core_ext/active_support.rb', line 3

def csv_export(hash = {}, filename = nil)
  exporter = CsvExporter::Base.new
  exporter.csv_file(self, hash, filename)
end