From: Eugen Naiman Date: 2009-10-20T07:56:41+09:00 Subject: StringIO Hello, I have to apologize if there is an obvious answer to my issue - we were all beginners once ... I have just started playing with ruby couple days ago. My problem is: when I run the script (in SciTe) instead of seeing the result, I see only a referrence like this: # then the script exits. I know the return must be quite a long list but I can't see it. I've searched the Internet hoping to understand what this output is; I came to understand something but it is definitely not enough to help me see the output. How can I see the content of this StringIO? this is my script: require 'rubygems' require 'spectools' require 'vnmsh' SpecTools::Config.default_access_method = :cli session = VNMSH.new() session.connect VNMSH.default_session = session models = SpecTools::Model.find({:name, '1A2'}).first IP_addr = Attr.new() IP_addr.id = '0x12d7f' tt = session.show_attributes(:model, models, {:name,"Condition"}) puts tt Thank you very much, -- Posted via http://www.ruby-forum.com/.