vote up 1 vote down star

Im wondering how to go about creating an online IRB that runs in the browser. I have an idea to include an irb console in my blog and give the option for users to send code blocks in my tutorials directly into the irb console so they can play around with it.

_Why did this previously, but of course it is gone now: Cached Version

flag

4 Answers

vote up 3 vote down check

TryRuby is still available here, with source code at GitHub.

UPDATE: That TryRuby implementation isn't actually working at the moment, apparently due to security concerns. But hopefully you'll be able to learn something from the code.

link|flag
vote up 1 vote down

That's insanely dangerous. Don't do this. You expose your system to all sorts of vulnerabilities when you allow users to execute arbitrary Ruby code.

Anyway there are some client-side Ruby implementations in JavaScript/Flash. Take a look at HotRuby.

link|flag
2  
Dude, calm down. I don't think he's planning to run his online IRB unsandboxed on his accounting records server. – Chuck Aug 27 at 16:45
Even a sandboxed IRB on your server is questionable to me. If you're going to implement this, you need to really stay on top of security updates and things like that. – Wahnfrieden Aug 27 at 17:21
This is much less risk than your average Web host takes on, and nobody says, "OMG, don't host Web sites! You'll expose your system to all sorts of vulnerabilities!" – Chuck Aug 27 at 19:30
Apparently _why's script was found to have security vulnerabilities. – Wahnfrieden Aug 27 at 20:01
1  
What? It gives out your social security number? – Chuck Aug 27 at 21:33
show 3 more comments
vote up 0 vote down

I would suspect you run Ruby in a sandbox to prevent "bad" commands being run.

link|flag
vote up 2 vote down

Well, you could use the sandbox that _why created. But you'll need to be able to patch your ruby and it seems to only work on ruby 1.8.5 .

link|flag
Thanks didn't know this code was still publicaly available. – Corban Brook Aug 27 at 16:57
It apparently has security vulnerabilities. – Wahnfrieden Aug 27 at 21:24

Your Answer

Get an OpenID
or

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