class Thor::Shell::Basic
def ask(statement, color=nil)
ask("What is your name?")
==== Example
Ask something to the user and receives a response.
def ask(statement, color=nil) say("#{statement} ", color) $stdin.gets.strip end
def ask(statement, color=nil) say("#{statement} ", color) $stdin.gets.strip end