Sha256: 98a01eff5c48d63c6c9cb1bec62c043e2bc0ba087afe3dd947d68a2539c79afe

Contents?: true

Size: 288 Bytes

Versions: 3

Compression:

Stored size: 288 Bytes

Contents

# frozen_string_literal: true

require_relative 'pptx_data/presentation.rb'

module OoxmlParser
  # Basic class for parsing pptx
  class PptxParser
    def self.parse_pptx(path_to_file)
      Parser.parse_format(path_to_file) do
        Presentation.new.parse
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ooxml_parser-0.6.0 lib/ooxml_parser/pptx_parser/pptx_parser.rb
ooxml_parser-0.5.1 lib/ooxml_parser/pptx_parser/pptx_parser.rb
ooxml_parser-0.5.0 lib/ooxml_parser/pptx_parser/pptx_parser.rb