# File lib/consular/cli.rb, line 185 def core_selection(cores) say "Multiple cores match the current system:", :yellow cores.each_with_index do |core, index| say " [#{index}] - #{core.to_s}" end num = ask "Please select the number choice of the core to use: " cores[num.to_i] end