tags:

views:

115

answers:

2

_why enables you to run ruby (irb in particular) from a web browser, and github allows you to edit code that's under version control from a web browser.

Is there anything that allows you to do both, ie edit code and run it, from a web browser?

+4  A: 

Perhaps herokugarden ?

Dan Breslau
Can that work if the program you are working on is a command-line program (as opposed to rails and the like)?
Andrew Grimm
It includes a command-line console (yes, through the broswer), so I don't see why not. I haven't tried it, though.
Dan Breslau
A: 

What is wrong with editing locally, commiting, and having a git hook that pushes the latest version to the correct location?

http://www.kernel.org/pub/software/scm/git/docs/githooks.html

SeanJA
Even when your local computer doesn't have ruby installed on it?
Andrew Grimm