class Question

Attributes

id[RW]
question_text[RW]
type[RW]

Public Class Methods

new(type, id, question_text) click to toggle source
# File lib/quizzer.rb, line 76
def initialize(type, id, question_text)
  @type = type
  @id = id
  @question_text = question_text
end