Tagged Questions
1
vote
1answer
56 views
How to execute a method before an interrupt
Is there a way when writing a Ruby script to specify a command to be executed before the script stops due to a keyboard interrupt like CtrlC?
1
vote
3answers
139 views
How to break while = gets
I want to run this code like this
count = Hash.new(0)
while line = gets
words = line.split
words.each do |word|
count[word] += 1
end
end
count.sort{|a, b|
a[1] <=> b[1]
}.each do ...
1
vote
1answer
58 views
caller in interrupt
What is the rule for the content of caller called from within an interruption? When I run the following code:
File: test
1| def a; b end
2| def b; c end
3| def c; loop{sleep(1)} end
4| def d; e end
...
1
vote
2answers
336 views
Ruby Net::SFTP transfer interrupt handling
How to handle Ruby Net::SFTP transfer interruption like network disconnection?
When I run my example code and the network is disconnected during the transfer, application stays running.
require ...
8
votes
2answers
120 views
Ruby - Hide “^C” on Interrupt
In Ruby I have the following:
# Trap Interrupts
trap("INT") do
puts "Shutting down..."
exit
end
When I interrupt the program, the following is printed (Mac OSX Lion):
^CShutting down...
...
1
vote
0answers
150 views
Ruby - Function keys listener with Interruptions
I would like to add some listeners on F1..F4 keys for example in order to make a loop program interactive with users....
For exemple: exiting some while loops, entering some if loops or printing some ...
3
votes
1answer
178 views
How do I stop Minitest?
In Ruby 1.9.1, I find that ctrl + c only kills a single unit test, and you can't stop the running of the entire testing program that way.
By contrast, under test/unit in Ruby 1.8, it stops all the ...
1
vote
2answers
783 views
How can I add a user interrupt to an infinite loop?
I have a ruby script below which infinitely prints numbers from 1 onward. How can I make the script stop its infinite execution through an interrupt in the terminal like 'Ctrl+C' or key 'q'?
a = 0
...
2
votes
3answers
526 views
Can't interrupt/terminate Ruby script with Ctrl+C on Windows
My script opens TCP connection and reads data from server. If server does not respond I try to interrupt the script with Ctrl+C, but it does not work. The only way to terminate the script is to kill ...
1
vote
2answers
1k views
Some sort of Ruby “Interrupt”
So here's what I'm doing -- I have a ruby script that prints out information every minute. I've also set up a proc for a trap so that when the user hits ctrl-c, the process aborts. The code looks ...
1
vote
2answers
783 views
Ruby, windows, active_record, and Control-C
What is active_record doing to the signal processes under windows (I don't see this with the same versions on the mac) that causes it to behave so strangely? For instance:
require 'rubygems'
...
