class Plaintext::XlsxHandler

Public Class Methods

new() click to toggle source
Calls superclass method Plaintext::OfficeDocumentHandler::new
# File lib/plaintext/file_handler/zipped_xml_handler/office_document_handler/xlsx_handler.rb, line 5
def initialize
  super
  @content_type = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
  @file_name = 'xl/sharedStrings.xml'
  @namespace_uri = 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'
end