Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the best way to embed Ruby as a scripting language in C++? Using ruby.h? SWIG? Something else? What I need is to expose some C++ objects to Ruby and have the Ruby interpreter evaluate scripts that access these objects. I don't care about extending Ruby or accessing it in C++.

I've found this article on embedding Ruby in C++, and while it's very useful, it's kinda old and I was wondering if there are any other resources on the subject (or open source implementations of similar engines).

share|improve this question

4 Answers

up vote 4 down vote accepted

swig is probablly the way to go..... but ruby doesnt embed too well......

if you want a language that embeds nicely into C++, try lua

share|improve this answer
I did try lua, it's a wonderful language and was pretty easy to embed. Ruby is a requirement however, as I already have a lot of existing Ruby code I'd like to reuse. – Firas Assaad Oct 27 '08 at 8:53
1  
then swig is pretty good..... and don't try multi threading! – Keith Nicholas Oct 27 '08 at 9:12
1  
Yes even don#t try to embedd ruby and use it from a single thread in you multithreaded apps. They (the ruby programs) are changing signal handlers, envionrment variables, current directories etc. all the time. – Lothar Aug 26 '09 at 14:22

Rice is looking very promising.

share|improve this answer
4  
Note to Windows users: Rice is only known to properly compile and run under Cygwin and Mingw. :( – Firas Assaad Nov 30 '08 at 11:04

Ruby provides a very helpful README.EXT file. It has lots of information about how to extend Ruby, and convert between C & Ruby types.

There is also this excerpt from the pick axe book which pretty much covers the same thing.

In my case, when I added Ruby scripting to my application I decided against using swig, because my needs were very simple, and I didn't want to add yet another build dependency.

share|improve this answer

You might wish to check out tinyrb.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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