Class: OoxmlParser::PptxParser

Inherits:
Object
  • Object
show all
Defined in:
lib/ooxml_parser/pptx_parser/pptx_parser.rb

Class Method Summary collapse

Class Method Details

.parse_pptx(path_to_file) ⇒ Object



5
6
7
8
9
# File 'lib/ooxml_parser/pptx_parser/pptx_parser.rb', line 5

def self.parse_pptx(path_to_file)
  Parser.parse(path_to_file) do
    Presentation.parse
  end
end