views:

2836

answers:

11

Mac's have TextMate as there preferred application for ruby development, but what would be the preferred application for linux? I need something where it's easy to work with multiple files, project structure and setup commands to run my ruby app or if it is one my merb app.Syntax highlighting is also a must.

Now I typically use Vim, but it's not the best for working with multiple files or with a project structure, even with VTreeView plug-in or multiple VIM windows.

So what would you guys suggest?

If you have better plugins to use for VIM feel free to mention them, I'm not ruling out VIM here.

+3  A: 

Aptana with the Rails plugin is pretty good.

Adam Lassek
+2  A: 

Setup Gedit to be almost like Textmate

pmlarocque
+2  A: 

If you are on Ubuntu/Debian, plain old emacs with ruby-elisp package isn't bad. It's no TextMate, but it's not bad.

David Nehme
A: 

I prefer Aptana/RadRails on both Mac and Linux. It gives a consistent experience for me no matter what OS I'm on.

I still don't get the excitement over Textmate...

Micah
+1  A: 

Since you are a vimmer, have you looked at this? I have no experience with it, but looks quite good in the screencast.

André
A: 

Given that you use vim, this post might be interesting.

Her is the Fuzzyfinder Textmate vim plugin that the post refers to.

anshul
A: 

Aptana Studio is indeed very nice. Also Gedit does the job if you don't want a full IDE environment and are more inclined to do stuff by hand :).

Morph
+4  A: 

I use Vim on both Windows and Linux for development in Rails (we have to use Windows in work, and I only use Linux at home). The environment is almost exactly the same for both platforms. Especially important for me is easy navigation between the various Rails components - from Controllers to views, partials and models, and quick navigation to test files.

Here are the plugins I use:

  • Vim Rails by Tim Pope. The :R, :A and gf commands are the ones I use mostly for navigation.
  • NERDTree for a project/explorer view.
  • NERDCommenter for easy multi-line commenting.
  • FuzzyFinder and "FuzzyFinder - Textmate" - allows you to quickly find files based on portins of a file name.
  • Ctags
  • Bufexplorer
  • dbext for executing SQL commands and getting the results in a Vim buffer.
  • Ack and the ack plugin for a better grepping experience from within Vim.
  • VividChalk colour scheme.
+2  A: 

I prefer Netbeans on both linux and Mac

Deviant
A: 

+1 for Netbeans for Rails. Each release gets better and better and with 6.7 beta it's better yet. Using it on Windows and Mac -- under Linux it's what I'd use as well.

Julian
+2  A: 

RubyMine from JetBrains.com works well for Mac/Linux/Windows, the price is 99$ but it's probably the most productive IDE for Ruby and Rails I have tested so far.

davidhalldor