Hi,
I didn't necessarily want to embed it--just use lua to call it from
within scite and display its output...
I have something like this. (untested)
local CMD = 'ruby '
local OUT = '/tmp/scite.out'
local somefile = '/tmp/test.rb'
os.execute(CMD..somefile..' > '..OUT)
local f = io.open(OUT)
print(f:read('*all'))
f:close()
Is that what you're looking for?
-Mitchell;
_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest