class HighLine::Menu

def choice(name, help = nil, text = nil, &action)

def choice(name, help = nil, text = nil, &action)
  item = Menu::Item.new(name, text: text, help: help, action: action)
  @items << item
  @help.merge!(item.item_help)
  update_responses # rebuild responses based on our settings
end