class ActiveSupport

Public Instance Methods

csv_export(hash = {}, filename = nil) click to toggle source
# 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