module Exportable::ExportMethods::CsvExporter
Module to handle only CSV exporting
Public Instance Methods
export_csv(options = {})
click to toggle source
# File lib/exportable/export_methods/csv_exporter.rb, line 9 def export_csv(options = {}) export_options = get_export_options(self, @options.merge(options)) Exporter.new(self).export(export_options) end