DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Ask Method For Rake Tasks
// description of your code here
def ask(question)
print question + " "
answer = STDIN.gets.chomp
if answer == "" or answer.nil?
return nil
else
return answer
end
end





