Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a rake task that is called from another rake task.

In this rake task I need to ask the user for some text input, and then, depending on the answer either continue, or stop everything from continuing (including the calling rake task).

How can I do this?

share|improve this question

2 Answers

up vote 23 down vote accepted
task :input_test do
  input = ''
  STDOUT.puts "What is the airspeed velocity of a swallow?"
  input = STDIN.gets.chomp
  raise "bah, humbug!" unless input == "an african or european swallow?"
end
task :blah_blah => :input_test do 
end

i think that should work

share|improve this answer
5  
You get an upvote for the answer AND for referencing Monty Python! – Richard Hulse Mar 28 '12 at 17:22
1  
pls use STDIN.gets.chomp, to truncate the new line character.. for an exact string match.. – boddhisattva Jun 8 '12 at 13:10
+1, but how would you go and ask for Y/N in this case? – kaiser Dec 10 '12 at 7:54
@kaiser , just decide what to do with a if/then/else or unless or even a case type of control structure. In this case I'm raising an exception ( to stop execution as in OP's question ) but you can do anything with the input just change the question to be clear you want a yes no in it, one of the other answers does this i think – loosecannon Dec 10 '12 at 22:25
Thanks. I'm already doing a Ruby course on CodCademy. I'm just too much PHP for elsif and unless... :P – kaiser Dec 11 '12 at 0:10
task :ask_question do
  puts "Do you want to go through with the task(Y/N)?"
  get_input
end

task :continue do
  puts "Task starting..."
  # the task is executed here
end

def get_input
  STDOUT.flush
  input = STDIN.gets.chomp
  case input.upcase
  when "Y"
    puts "going through with the task.."
    Rake::Task['continue'].invoke
  when "N"
    puts "aborting the task.."
  else
    puts "Please enter Y or N"
    get_input
  end
end 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.