Method: Barker::Stage#initialize

Defined in:
lib/barker/stage.rb

#initialize(quiz, candidates, options = {}) ⇒ Stage

Returns a new instance of Stage.



6
7
8
9
10
11
# File 'lib/barker/stage.rb', line 6

def initialize(quiz, candidates, options = {})
  @quiz = quiz
  @candidates = candidates
  @round_counter = -1
  @guideline = options[:guideline]
end