Class: Marksman::Slide

Inherits:
Object
  • Object
show all
Includes:
Equality
Defined in:
lib/marksman/slide.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Equality

#==, #attributes

Constructor Details

#initialize(options) ⇒ Slide

Returns a new instance of Slide.



6
7
8
9
# File 'lib/marksman/slide.rb', line 6

def initialize(options)
  @slide = options[:slide]
  @notes = options[:notes]
end

Instance Attribute Details

#notesObject

Returns the value of attribute notes.



4
5
6
# File 'lib/marksman/slide.rb', line 4

def notes
  @notes
end

#slideObject

Returns the value of attribute slide.



4
5
6
# File 'lib/marksman/slide.rb', line 4

def slide
  @slide
end