vote up 11 vote down star
2

I've heard so much about Textmate - The Missing Editor for Mac and that it is the best one for Ruby.

What is your choice?

And what is the best Ruby editor on Windows?

E?

flag

49 Answers

1 2 next
vote up 19 vote down check

For me, on the Mac it definetly has to be TextMate.

You may want to check out the TextMate clone for Windows, E-TextEditor.

link|flag
show 3 more comments
vote up 0 vote down

We are using Netbeans 6.5 or later for our Scrumpad project and its working great for us. I would definitely recommend Netbeans for ruby or rails projects.

link|flag
vote up 0 vote down

I use NetBeans at work and e at home. I've considered switching to RubyMine, has anyone tried it?

link|flag
vote up 0 vote down

My choice for Mac is definitely TextMate.

For Linux i may use Vim or Gedit.

link|flag
vote up 0 vote down

For Windows? Really, don't bother with E-TextEditor... it's a nice idea and a good feature set (thanks to TextMate!), but it is waaaay too buggy.

Since getting a recommendation from a Twitterite, I switched to Sublime Text (http://www.sublimetext.com/) and find it delightful.

link|flag
vote up 0 vote down

I toggle between the Ruby-Enhanced version of Notepad2 and Sapphire Steel depending on what project I work on.

link|flag
vote up 0 vote down

On Windows : E

On Linux : Vim

On Mac : TextMate

link|flag
vote up 0 vote down

I currently use NetBeans on a MAC and haven't had any issues at all. Speed hasn't been a problem for me. If you don't like NetBeans, JetBrains has just released RubyMine (see: http://www.jetbrains.com/ruby/index.html). RubyMine is a pretty cool IDE, but I don't see any reason to switch from NetBeans, as someone wrote, RoR is IDE-Agnostic, so pick what you like best and keep it movin'...

link|flag
vote up 0 vote down

This will depend on your style of coding.

If you like Java style with full IDE and in-editor debugging, Aptana with Radrails works pretty well on Mac/Windows. It also has the added bonus of having lots of helpers built in, so it makes it easier to get started.

Personally though, I love Textmate (for mac; I used E before that on Windows). It loads super fast, and can run tests easily with great syntax coloring and useful code completion. If you want to do the whole debugging thing you can still use "debugger" rather than just checking off a line like with Aptana. If you're using something like Autotest for testing though, this makes a lot more sense than a full IDE.

link|flag
vote up 0 vote down

for what its worth, i am developing on Vista at home, and XP at work.

I was using Notepad++, but i have recently changed to SCITE, and i find it great for Ruby.

link|flag
vote up 0 vote down

Rubymine is the latest addition to IDEs.

link|flag
vote up 0 vote down

On windows I use Aptana with the Radrails plugin, but the best way to go is to get a Mac and Textmate.

link|flag
vote up 0 vote down

Emacs with ruby-mode is my favorite. It's available for Linux, Mac & Windows and is my personal IDE for all programming languages I've worked in for the last 6+ years. Emacs can be intimidating at first (goofy keyboard combos for all the commands), but once you've passed the "beginner" stage via tutorials, you wont go back.

link|flag
vote up 0 vote down

Preface: all these are my personal opinions

On Mac

  • TextMate is probably the best in terms of pure editing for Ruby. I like the command and the inteface.
  • I love to use Panic's Coda, however, when I'm working remotely on our dev/staging servers. It's simply an amazing product for managing several different projects/servers at a time.

On Windows

  • Notepad++ has everything you will ever need for anything ever. Great syntax highlighting control, tabbed windows, split panes, great selection of plugins covering everything from generic text transformations to a hex editor and diff-style document comparisons. If I could marry it I would.

CLI

  • vi. 'Nuff said.
link|flag
show 1 more comment
vote up 0 vote down

I have recently started working with Ruby on Rails. One thing I like about RoR is that you don't have to be tied to any specific IDE to be productive. You can start working with any text editor which you have experience with. As I have been developing on Windows platforms for long time, i have explored all different text editors from notepad2, notepad++, pspad, programmer's editor, textpad, editpad, editplus, e-text editor. My favorite text editor so far for any programming and text tasks is notepad++.

In recent months, I am starting to use VIM. Initial learning curve is steep (if you are windows person). but as you learn and configure VIM the way you like it, it will become center piece of your development.

Specifically for Ruby, get VIM with RubyonRails plugin. Don't forget to download NERDTree for better file explorer in VIM.

Aptana Studio community edition is best if you require IDE.

Hope this helps.

link|flag
vote up 0 vote down

Zeus does syntax highlighting and code folding for the Ruby language.

link|flag
vote up 0 vote down

BBEdit, especially now that verion 9 is out (better project support, non-modal find, diff-by-character).

I tried (briefly, I admit) using TextMate, and I could see how strong it was as an editor, but in the short time I was using it the anti-aliased text drove me nuts. Sure, the text display settings can be changed, but though I put some effort into switching to Monaco 11pt non-anti-aliased, I could not get it to not look like ass. In the end, this was mostly due to the default profile's use of boldface and italic text, which looked horrible when anti-aliasing was turned off. There may be an easy way to go through and remove that kind of text styling in one step, but I couldn't find it, and I didn't want to deal with manually tweaking the profile to exclude it.

link|flag
vote up 0 vote down

emacs, run fast from eclipse and eclipse based IDE's. my experience has been huge memory leaks in the jvm when using them.

link|flag
vote up 0 vote down

I'm a Textmate guy, but also recommend JEdit and VIM Ruby/Rails bundles.

link|flag
vote up 0 vote down

Has anyone tried 3rdRail by CodeGear. Looks pretty nice. http://www.codegear.com/products/3rdrail

link|flag
vote up 0 vote down

I used Aptana for about a year before I switched over to E Texteditor. It's like Textmate for windows.

link|flag
vote up 11 vote down

There are several discussions on this very subject here on SO:

best-editor-for-ruby

what-ruby-ide-do-you-prefer

what-ide-to-use-for-developing-in-ruby-on-rails-on-windows

best-ide-for-ruby-on-rails

Might want to check these out.

link|flag
show 1 more comment
vote up 2 vote down

Aptana provides all the things you're looking for. If you've already used Eclipse, you should feel right at home.

link|flag
vote up 5 vote down

I use TextMate on my Mac. It does a pretty good job as a general purpose editor, and works well with Ruby. It does syntax highlighting, etc, and has a file explorer built in. So if I have a rails project in a directory called MyWebSite, from the command line I just type:

mate MyWebSite

TextMate opens up with its built-in file explorer showing all of my project files. I love that feature since so much of Rails takes place on the comamnd line anyway.

link|flag
vote up 0 vote down

I just love NetBeans, and because they have full support for Ruby, I would give you NetBeans as my recommendation.

link|flag
vote up 15 vote down

NetBeans from Sun, with the Ruby package. Syntax highlighting, auto complete, debugging support, unit test support. Plus it's multiplatform and free.

link|flag
show 4 more comments
vote up 0 vote down

I tried all the IDE style tools, and Sun's NetBeans has the best Ruby support by far. It also has good debugger support. But, in the end I reverted to TextMate because all the IDEs are built in Java and just run slow. I never noticed it so much when doing Java work, but it really bugged me after doing Ruby for a while. The native tools are just a lot faster and my expectations for speed came to match that experience.

link|flag
vote up 0 vote down

I've tried a ton of editors then started using TextMate since it came out. Since then, I've occasionally tried others, but have always come back to TextMate. The bundles system awesome, it's quick start-up time and non-bloated-IDE feel have me convinced it's the best, most productive editor for Ruby available.

link|flag
vote up 0 vote down

Coming from the java/intellij world, I needed a more full-featured ide for my development. I have found netbeans to be the ide that fits my rails development the best. It offers common things like syntax highlighting, autocomletion, ability to run rake tasks, and an integrated debugger.

link|flag
vote up 1 vote down

For a full IDE, Netbeans is great. The debug power is awesome. Textmate is also nice for text editor only.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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