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