class Gamefic::Props::MultiplePartial


A subclass of MultipleChoice props that matches partial input.

def index_by_text

def index_by_text
  matches = options.map.with_index { |text, idx| next idx if text.downcase.start_with?(input.downcase) }.compact
  matches.first if matches.one?
end