module Exportable::ExportMethods::XmlExporter

Module to handle only XLS exporting

Public Instance Methods

export_xml(options = {}) click to toggle source
# File lib/exportable/export_methods/xml_exporter.rb, line 8
def export_xml(options = {})
  export_options = get_export_options(self, @options.merge(options))
  Exporter.new(self).export(export_options)
end