class ChupaText::Decomposers::LibreOfficeOpenDocumentPresentation

Public Class Methods

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

Private Instance Methods

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