From: ts Date: 2001-05-29T17:13:32+09:00 Subject: [ruby-talk:15914] Re: embedded ruby >>>>> "T" == Tom Spilman writes: T> That would mean writing my own parser for ruby.... that seems a bit of a No. You have not understood. For example in an extension, or an embedded ruby, when I want to require a file, I just write : rb_require("my_file"); Why do you want that I write rb_eval_string("require 'my_file'"); or *worst* write "require 'my_file'" in a temporary file, then call ruby_options() and finally ruby_run() just to make the 'require'. This is just stupid. Guy Decoux