class HighLine::Menu

def value_for_hash_selections(items, selections, details)

def value_for_hash_selections(items, selections, details)
  # Find the selected items and return in hash form
  index = 0
  selections.each_with_object({}) do |(key, selection), memo|
    selected_item = find_item_from_selection(items, selection)
    value = value_for_selected_item(selected_item, self.shell ? details[index] : nil)
    index += 1
    memo[key] = value
  end
end