Method: Lecture::Slide::Base#method_missing

Defined in:
lib/lecture/slide/base.rb

#method_missing(method_name, *arguments, &block) ⇒ Object (private)



30
31
32
33
34
35
36
# File 'lib/lecture/slide/base.rb', line 30

def method_missing(method_name, *arguments, &block)
  if options.key?(method_name)
    options[method_name]
  else
    super
  end
end