Editor for ruby

Hi, all
is there any editor (free?) that I can use for Ruby, so it can run code
directly from it? without going to command w.

Tx
Dai

Hello,
try Editra.
works great for me on WindowsXP, but there’s also a MacOS and a Linux
version…

http://editra.org/

Vim with an appropriate configuration.
I can run ruby code with a single keypress.

autocmd FileType ruby noremap :call ExecBuffer(“ruby
-w”)
autocmd FileType ruby inoremap :call ExecBuffer(“ruby
-w”)

You can pass ‘call’ argument whichever you want. ExecBuffer is just my
custom function to run code in a console or xterm depending on current
environment.