Tagged Questions

5
votes
2answers
115 views

In Ruby, how do I combine sleep with gets? I want to wait for user response for 1 min, otherwise continue

I'm running a loop, in which I wait for a user response using the "gets.chomp" command. How can I combine that with a sleep/timer command? For example. I want it to wait 1 min for the user to enter a ...
3
votes
4answers
3k views

Recovering from a broken TCP socket in Ruby when in gets()

I'm reading lines of input on a TCP socket, similar to this: class Bla def getcmd @sock.gets unless @sock.closed? end def start srv = TCPServer.new(5000) @sock = srv.accept ...
2
votes
1answer
31 views

Changing behavior of gets, when reading from command line, in Ruby

The intended operation of the Ruby code below is as follows: write ARGV[0], a file named on the command line, to old create a new, temporary copy of that file loop until user gives input remove the ...
2
votes
2answers
96 views

Why is gets throwing an error when arguments are passed to my ruby script?

I'm using gets to pause my script's output until the user hits the enter key. If I don't pass any arguments to my script then it works fine. However, if I pass any arguments to my script then gets ...
1
vote
1answer
13 views

Extra Characters from console I/O using gets

I'm trying to build a ruby program which creates a directory and name it using console input. 1 #!/usr/bin/env ruby¬ 2 ¬ 3 ...
1
vote
1answer
29 views

Trying to search a string for a gets input in ruby

I am having issues searching for a string input by the user using gets. Here's the outline: puts "What are we searching for?" search = gets z=1 result = [] file = File.open('somefile.txt', 'r+') ...
1
vote
2answers
198 views

print function in ruby

I'm a ruby beginner. I have the following code which asks the user for his name and prints it back. print 'Enter your name : ' name = gets() print("Hey,#{name} !") If I enter John Doe as the name, ...
0
votes
1answer
37 views

How can I store user defined data in a hash

Help, I am a noob, just need some advice on this bit of code. I have got most of my program working this part has me stuped i want to get a name and password. Then make the name the key and the ...
0
votes
1answer
115 views

Ruby gets stream closed stream IO error

This is an error that I'm getting when I run a script. repo nikhil$ ruby repobuilder.rb Resuming from package:20 Now Processing 21 repobuilder.rb:16:in `gets': closed stream (IOError) from ...
0
votes
2answers
199 views

Ruby gets input goes to the console command line after program terminates

I am trying to set up a simple ruby program with a two additional threads. One thread is to check the serial port for data and populate a variable if anything is found. The second thread is is a ...
0
votes
2answers
426 views

Using gets command to sort array alphabetically in Ruby

I am a Ruby noob and am simply trying to use the gets command to sort a array of words ("dog", "cat", "ape") should be entered individually by gets and become ("ape", "cat", "dog") I have tried: ...
0
votes
1answer
328 views

Question about “gets” in ruby

I was wondering why when I'm trying to gets to different inputs that it ignores the second input that I had. #!/usr/bin/env ruby #-----Class Definitions---- class Animal attr_accessor :type, ...