module Lecture

Constants

HELP
VERSION

Public Class Methods

available_colors() click to toggle source
# File lib/lecture.rb, line 41
def self.available_colors
  String.colors
end
available_modes() click to toggle source
# File lib/lecture.rb, line 45
def self.available_modes
  String.modes
end
character_print_delay() click to toggle source
# File lib/lecture.rb, line 17
def self.character_print_delay
  @@character_print_delay || 0.018
end
execute(deck) click to toggle source
# File lib/lecture.rb, line 49
def self.execute(deck)
  Runner.new(deck).execute
end
pygment_style() click to toggle source
# File lib/lecture.rb, line 25
def self.pygment_style
  @@pygment_style || "paraiso-dark"
end
section_header_text() click to toggle source
# File lib/lecture.rb, line 33
def self.section_header_text
  @@section_header_text ||= " § "
end
slide_types() click to toggle source
# File lib/lecture.rb, line 29
def self.slide_types
  @@slide_types ||= Set.new
end
transition_time() click to toggle source
# File lib/lecture.rb, line 21
def self.transition_time
  @@transition_time || 0.3
end