Sha256: a4a2a192bef98067a53c9f73d73e6e66a3b13d91b1fa273bf51f521c9e44f68d
Contents?: true
Size: 348 Bytes
Versions: 16
Compression:
Stored size: 348 Bytes
Contents
# frozen_string_literal: true require 'tty-prompt' module Uffizzi module UI class Prompt def initialize @prompt = TTY::Prompt.new end def select(question, choices) @prompt.select(question, choices) end def ask(message, **args) @prompt.ask(message, **args) end end end end
Version data entries
16 entries across 16 versions & 1 rubygems