I have objective-C code that calls ruby scripts and monitors STDOUT. However, ruby does not seem to synchronise STDOUT by default, so I need to put STDOUT.sync = true at the beginning of the script to see output as it happens.

Can I do this as a command line option when calling a ruby script?

link|improve this question

57% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You can create a setup file to require before your script. Then call ruby with the -r flag:

ruby -r "$HOME/.rubyopts.rb" myscript.rb

You can also set the environment variable RUBYOPT to automatically include that file every time you run ruby:

export RUBYOPT="-r $HOME/.rubyopts.rb"
link|improve this answer
thanks, the rubyopt worked well – Duncan Sep 26 '11 at 10:39
feedback

Your Answer

 
or
required, but never shown

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