class ChupaText::Decomposers::LibreOfficeExcel

Public Class Methods

new(options) click to toggle source
Calls superclass method
# File lib/chupa-text/decomposers/libreoffice-excel.rb, line 24
def initialize(options)
  super
  @extensions = ["xls"]
  @mime_types = ["application/vnd.ms-excel"]
end

Private Instance Methods

log_tag() click to toggle source
Calls superclass method
# File lib/chupa-text/decomposers/libreoffice-excel.rb, line 31
def log_tag
  super + "[excel]"
end