Simple Ruby Editor?

This editor is not for me. It is intended to teach someone else Ruby. I use Emacs a lot when writing Ruby. Does anyone know about an editor that

  • when the button is pressed, the tab discards the current line correctly,
  • can format the whole file correctly (the key combination will be nice)
  • has syntax highlighting for Ruby,
  • it also works like Windows Notepad (possibly with an icon bar),
  • has a built-in terminal (optional)
  • has several editor tabs,
  • and works on windows, linux or both?

Or is something close?

Edit: I am also going to add that I would like to be free (legally for an indefinite period of time). Open source will not hurt.

+4
source share
6 answers
+2
source

I do not think jEdit has a built-in terminal, but I believe that it does everything you need. It is implemented in Java, so it should work on any platform for which the JVM exists, including Windows and Linux.

+2
source

If you are not a tough fan of emacs, then there is always vim and its plugins for any programming language. Here's one for Ruby: rails.vim: Ruby on Rails: easy file navigation, advanced syntax highlighting, and more

If you're new to vim, this cheat sheet will help you: the vim graphic cheat sheet

+2
source

Since he is about learning ruby ​​RedCar and Diakonos is a good choice. They have most of the features you mentioned, and as a bonus, both are written in Ruby.

+2
source

I like gedit - it does not have a terminal, but it should work fine for other requirements. It can work on Windows with Cygwin.

For a full IDE, Aptana Studio is great. It meets your requirements.

+1
source

If your main goal is to teach, you can try using Hackety Hack. From time to time it is somewhat weak, but I found it funny and easy to use, but then I already knew the ruby ​​well.

For beginners who can easily run programs, it is very important, so you need something where irb and ruby ​​can be run very simply. Aptana seems to be a pretty good environment for this kind of thing, but I never used it for website development.

Besides these two, I suggest Notepad ++ ... Free KomodoEdit may also be interesting. Personally, I say teach another person emacs, but then shrugged again

0
source

All Articles