I'm looking for some solution of next problem: Now i'm developing an Rails app. I want to have possibility to code in Ruby at browser and then execute that code in my Rails app.

Are there some ready solutions?

UPD:

  1. what about code highlighting?
  2. what about Native Client?
link|improve this question

75% accept rate
3  
is that a huge security breach that i smell ? – m_x Jan 19 at 8:15
Native Client in C++, not ruby. – Raynos Jan 19 at 9:09
@falinsky interesting, I guess you could do it that way. But why would you want to execute ruby in a browser environment? – Raynos Jan 19 at 9:14
@Raynos actualy i need to get valid ruby code from web page and execute it server-side. though i'm not sure about native client – falinsky Jan 19 at 9:29
show 5 more comments
feedback

3 Answers

up vote 1 down vote accepted

https://github.com/codegram/rack-webconsole

Or you could simply pass the Ruby code to the server via post and call eval eval(CODE).

You should note that especially the second way is very insecure since it gives the executing code complete access to your system.

If this really has to be done "Locking Ruby in the Safe" could help secure it.

EDIT:

For syntax highlighting take a look at Code Mirror and ACE. Both are decent source code editors with ruby support.

link|improve this answer
feedback

There aren't really any real-world deployable solutions for this yet, but you might look at text/x-ruby as a proof of concept.

There's also the Cloud9 IDE which functions as a browser-based IDE, and will persist code back to your server to be run.

link|improve this answer
feedback

eval is what you are looking for. A user enters Ruby-code, which gets POSTed to your rails app. Inside your controller you will need to eval the submitted Ruby code.

But. You probably don't want this. If there really seems to be a need to evaluate and run user submitted code, you most probably will need to re-think the need for that feature. This is almost impossible to make secure. And even when you secure it from certain users, it can be exploited trough XSS; which can actually take over a server in no-time trough this "feature".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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