Module: Ask

Extended by:
Ask
Included in:
Ask
Defined in:
lib/inquirer.rb

Instance Method Summary collapse

Instance Method Details

#checkbox(*args) ⇒ Object



14
15
16
# File 'lib/inquirer.rb', line 14

def checkbox *args
  Checkbox.ask *args
end

#confirm(*args) ⇒ Object



20
21
22
# File 'lib/inquirer.rb', line 20

def confirm *args
  Confirm.ask *args
end

#input(*args) ⇒ Object



17
18
19
# File 'lib/inquirer.rb', line 17

def input *args
  Input.ask *args
end

#list(*args) ⇒ Object

implement prompts



11
12
13
# File 'lib/inquirer.rb', line 11

def list *args
  List.ask *args
end