From: Michael Linfield Date: 2009-09-15T06:39:54+09:00 Subject: Re: Ruby and C++ exe > My requirement is to create automated test (scripts) that will do the > testing (mainly acceptance test) of our application (an Exe project > created on C++). I intend to use Ruby for the automated test. SWIG and Rice are good options, but if you want a fast cheap (not the safest way of doing this) option... pipe the output of your executable into ruby. system("executablename.exe") | manipulate output here. Again, not recommended but it would still work. - Mac -- Posted via http://www.ruby-forum.com/.