0
votes
1answer
26 views

File.open works when getting an argument at runtime, but not when getting an argument from the command line

If I enter a file name without passing it in the command line (E.g. ARGV would be empty) everything works fine, but if I pass it an argument in the command line I always get a File or directory does ...
1
vote
1answer
46 views

What is the best way to get keyboard events (input without press 'enter') in a Ruby console application?

I've been looking for this answer in the internet for a while and have found other people asking the same thing, even here. So this post will be a presentation of my case and a response to the ...
1
vote
1answer
37 views

Ruby create and open file with ::expand_path and create directory with ::expand_path

I'm just beginning to learn file IO with Ruby, and had a question about being able to use ::expand_path to direct to a path separate from where my program is running. Here is what I essentially ...
0
votes
1answer
44 views

STDIN.getch as a non block event (it's possible?)

I'm trying to read a character instantly from command line without use of Enter. The ruby (ruby 1.9.3p374) code that I'm using is the following: require 'io/console' ch = STDIN.getch puts ch until ...
0
votes
1answer
73 views

SOLVED: RubyFiddle issue - NameError: undefined local variable or method 'gets' for #

I apologise if this has been asked before. I have looked through Stack Overflow and I have tried some potential solutions but to no avail. class SqrrtProg def hello puts "Hello! Welcome to ...
0
votes
2answers
69 views

Rails 3 I/O to and From background process

Short version: I need to launch a subprocess (a Ruby script) from a Rails controller (using Rails 3), and render stdout messages from the subprocess to a webpage, and pass information into the ...
1
vote
1answer
82 views

Kill Process started by IO.popen automatically if parent ruby script is killed

I'm trying to run ffmpeg from ruby script in windows. def execute_ffmpeg(command) IO.popen(command){|io| io.each{|line| # Show Progress } } end command_ffmpeg = "ffmpeg -y -i ...
0
votes
1answer
115 views

How to read a file content at execution time? Chef reads at compile time

Because I'm running into this MIXLIB-11 error that I've reported to Mixlib team, I need to find a walkaround, an alternative to Mixlib::Shellout. Briefly about the problem: Here is a statement which ...
0
votes
1answer
160 views

In ruby, file.readlines.each not faster than file.open.each_line, why?

Just to analyze my iis log (BONUS: happened to know that iislog is encoded in ASCII, errrr..) Here's my ruby code 1.readlines Dir.glob("*.log").each do |filename| ...
0
votes
2answers
115 views

How can I convert an IO object to a string in Ruby?

I'm working with an IO object (some STDOUT output text), and I'm trying to convert it to a string so that I can do some text processing. I would like to do something like this: my_io_object = $stdout ...
0
votes
0answers
43 views

Can't create mutliple files in Ruby

I have a question about opening and closing a file with the same file variable in Ruby. I have a script to scrape tweets that is currently what is below but the problem is that I think it closes the ...
1
vote
1answer
81 views

Deleting multiple lines of terminal output using ruby

I would like to be able to output two lines to the terminal and then delete both of them. I know you can do one by doing something like print "\b"*whatever but I would like to do something more ...
-2
votes
1answer
102 views

Buffered IO in ruby

so far, i have been using these methods to read input from STDIN while competing at codechef challenges; if i have to read two int values, i would use a, b = gets.chomp.split.map(:&to_i) same ...
2
votes
2answers
145 views

What's the fastest way to read a large file in Ruby?

I've seen answers to this question but I couldn't figure out which of the answers would perform the fastest. These are the answers I've seen- which is best? Read one line at a time using each or ...
4
votes
2answers
178 views

how come ruby's single os thread doesn't block while copying a file?

My assumptions: MRI ruby 1.8.X doesn't have native threads but green threads. The OS is not aware of these green threads. issuing an IO-heavy operation should suspend the whole process until the ...
1
vote
2answers
175 views

Having a IO.popen command be killed when the caller process is killed

I have a Ruby script that starts a subprocess. I want them to be killed when the overall process is killed. IO.popen('testacular start unit.conf.js', 'w') Run my script: user.name:/my/repo [git: ...
1
vote
1answer
58 views

Strange behavior with pack('L')

If I try to write a packed byte as an unsigned int32 to a file, using pack('L'), the number 10 writes as five bytes. With any another number I get the normal behavior. I wrote simple script: x = 0 ...
2
votes
2answers
279 views

Ruby - Creating a file in memory

Is there anyway to write the following code in Ruby without writing the file to disk? temp_file = 'path/to/file.csv' users = [a@b.c, c@b.a] CSV.open(temp_file, "w") do |csv| csv << ...
0
votes
0answers
55 views

Updating a YAML File in Windows

I'm trying to update a YAML file with the following code: @languages = LanguageList::COMMON_LANGUAGES.sort{ |a, b| a.name <=> b.name } ...
0
votes
2answers
144 views

How can I test rspec user input and output with Highline?

I'd like to test response to user input. That input is queried using Highline: def get_name return HighLine.new.ask("What is your name?") end I'd like to do something similar to this question and ...
-1
votes
2answers
59 views

Why does Kernel#p duplicate my text on standard output?

Look at this code : def hello p "Hey!" end p hello the output will be: "Hey!" "Hey!" => "Hey!" And so here is my conclusion: puts itself returns the text which is going to be sent in ...
0
votes
1answer
71 views

How do I avoid EOFError with Ruby script?

I have a Ruby script (1.9.2p290) where I am trying to call a number of URLs, and then append information from those URLs into a file. The issue is that I keep getting an end of file error - EOFError. ...
1
vote
2answers
77 views

How do Ruby Directories work?

Dir-s seem awkward as compared to File-s. Many of the methods are similar to IO methods, but a Dir doesn't inherit from IO. For example, tell in the IO docs reads: Returns the current offset (in ...
0
votes
5answers
80 views

Why does “puts” return a blank line, but not “puts []”?

I'm going through a Ruby tutorial, and learned that the code puts 'start' puts puts 'end' will output three lines, but the following code puts 'start' puts [] puts 'end' will only output two. ...
0
votes
2answers
57 views

How to test what type of mode a Ruby File was opened in?

Say you are handed an open File object, but you have no clue what type of mode it was opened in (e.g 'r','w','w+'). How would you go about determining which mode the file is opened in? As far as I ...
4
votes
1answer
90 views

Reopening an IO Stream vs. just using the new Stream

In the Ruby-Docs it gives the example of: f1 = File.new("testfile") f2 = File.new("testfile") f2.readlines[0] #=> "This is line one\n" f2.reopen(f1) #=> #<File:testfile> ...
0
votes
1answer
135 views

Read I/O (in this case the Serial Port) without blocking (Ruby)

I'm trying to read a serial port in Ruby using the serial port gem. The problem is that sometimes there is not data to be read and when I tell the program to read the serial port, the program ...
0
votes
1answer
108 views

Does using the Ruby “File” class without closing leak memory?

So I was doing some research on the File class in Ruby. As I was digging I learned that File was a subclass of IO. To my understanding when you create an IO object (or File object), a buffer is opened ...
0
votes
2answers
189 views

Reopening a stream on a File object

Say you close a ruby File object f = File.open('testfile') f.close f.each_byte { ... } #=> IOError: closed stream I know you can reopen the stream through f = File.open(f), but is there a way to ...
0
votes
0answers
109 views

Ruby Mocking IO - issue with select

I have been learning Ruby, and have ran into a problem. I am building a game of battleships to learn the language. The game takes 2 input and 2 output streams into the constructor (allowing two ...
0
votes
0answers
73 views

Different ways to produce stream closed IOError

I'm using Ruby 1.9.2-p180. I'm trying to enumerate all possible ways to produce the closed stream IOError in Ruby. For example: the code below is one way to produce an IOError saying that the stream ...
0
votes
2answers
72 views

Ruby IO from a service at port 6557 in Sinatra

I have to take a dump of a service in sinatra and display it in the content area of the webpage. The Service I have to access via code runs on server at port 6557. It doesnt use any encryption or ...
2
votes
1answer
46 views

Convention or rule of thumb for IO objects?

I'm wondering about the proper 'contract' or best practice for using IO objects in Ruby. I have a bunch of helper methods that pass around IO objects. Currently, for my low level methods that consume ...
0
votes
2answers
96 views

Write test for accepting input from command line

I am fairly new to rspec and want to write test in rspec for getting input from command line in Ruby. How do I go about it? Also, explain the test. Thanks
1
vote
1answer
44 views

What's the correct way to handle SystemCallErrors in Ruby IO?

In Ruby, I can write contents to a file at path as simply as: IO.write path, contents, :mode => 'w+' However, the documentation does not specify what kind of exceptions may be raised. In C, if a ...
0
votes
3answers
98 views

Parse huge file (10+gb) and write content in another one

I'm trying to use Sphinx Search Server to index a really huge file (around 14gb). The file is whitespace separated, one entry per line. To be able to use it with Sphinx, I need to provide a xml file ...
3
votes
3answers
171 views

most efficient way to write data into a file

I want to write 2TB data into one file, in the future it might be a petabyte. The data is composed of all '1'. For example, 2TB data consisting of "1111111111111......11111" (each byte is represented ...
0
votes
1answer
82 views

read part of a file after writing

After creating a file and populating data into it, before close, need read part data and calculate the checksum. The issue is you cant read the data before close the file. Code snippet is as ...
0
votes
1answer
136 views

Ruby undefined method `binwrite' for IO:Class (NoMethodError)

Lately I get a very strange error at the following line of code: IO.binwrite(attachmentUploadFile, attachmentFileContent) This is the full error message: import.rb:326:in `block (3 levels) in ...
0
votes
1answer
88 views

Test input\output

I have code for the user input: class Z def self.input() val = $stdin.gets.chomp if val == "123" p "Ok" else p "none" end end end I want to test different data: ...
0
votes
0answers
21 views

Benchmarking stream reception

I am developing a device that send through a serial-usb converter a simple string with about 1s period. However, as this device is meant to have a real time clock embedded, I need some more time ...
0
votes
1answer
144 views

In rake task, execute command, read stdout until a certain line is matched, then detach and continue task

I want to launch a java servlet, observe its stdout until I see that it has fully loaded, and then go back to the rest of my rake task while keeping that process running. Currently I have something ...
0
votes
1answer
50 views

Why IO#lineno doen't alway indicate the next read point for IO#read

f= File.open('path_to_file','w') f.lineno #=> 0 f.gets #=>"this is the content of the first line" f.lineno #=>1 # the lineno cooresponse to the next read point of IO#gets f.rewind ...
2
votes
1answer
94 views

How to interact with a node REPL from Ruby

I'm trying to write a Ruby script that interacts with a Node.js REPL. When I do: i = IO.popen('node', 'r+') i.write("console.log('hi')") The write call returns the size of the write. But how do I ...
6
votes
7answers
967 views

Ruby: What's an elegant way to pick a random line from a text file?

I've seen some really beautiful examples of Ruby and I'm trying to shift my thinking to be able to produce them instead of just admire them. Here's the best I could come up with for picking a random ...
2
votes
1answer
461 views

Where does Ruby keep track of its open file descriptors?

What This Question Is Not About This question is not about how to auto-close a file with File#close or the File#open block syntax. It's a question about where Ruby stores its list of open file ...
1
vote
0answers
117 views

closed stream (IOError) when opening file (socket) in Ruby 1.9.3 C gem

Below is the code. It was originally written for 1.8.7 and not touched since 2006. I have successfully gotten a sister function bt_rfcomm_socket_connect() working by not using GetOpenFile(), but I ...
0
votes
2answers
128 views

Returning a hash from a subprocess in Ruby using IO.popen

I'm using IO.popen("cmd") in my Ruby script to run an Ironruby subroutine. In my Ironruby script, I am getting some data and storing it in a hash. In my Ruby script, I then use x=IO.popen("Iron ruby ...
1
vote
2answers
204 views

Ruby Thread with “watchdog”

I'm implementing a ruby server for handling sockets being created from GPRS modules. The thing is that when the module powers down, there's no indication that the socket closed. I'm doing threads to ...
0
votes
1answer
276 views

Ruby file output from fork

I have one simple script: fork do STDOUT.reopen(File.open('/tmp/log', 'w+')) STDOUT.sync = true exec 'bundle exec ruby script.rb' end script.rb: loop do sleep 1 puts "MESSAGE" end ...

1 2 3