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