class SlideSet

This is a container for an entry in a list of PowerPoint packages containing slides that are to be inserted into a base PowerPoint deck.

Public Class Methods

new(name, package) click to toggle source

name is a string that is expected to match a string found in a pptx file, marking the point at which to insert the slides contained in “package”. package is an opened pptx file (not a file path)

# File lib/slide_set.rb, line 9
def initialize name, package
  @name = name
  @package = package
end

Public Instance Methods

name() click to toggle source
# File lib/slide_set.rb, line 14
def name
  @name
end
package() click to toggle source
# File lib/slide_set.rb, line 18
def package
  @package
end