The best version of Ruby on Rails for OS X

Possible duplicate:
Best IDE for Ruby on Rails

There are many suggestions for other issues for a good Ruby on Rails IDE for Windows and Linux, but I'm a Mac user, starting with Ruby on Rails. I am currently using Xcode workspaces, but this is not very satisfactory. Please suggest some IDEs for me to try.

+4
source share
2 answers

RubyMine is well established and very functional, however it is a cross-platform IDE written in Java, and as such it can be dragged from time to time.

RailSide is a recent entry in Rails to the OS X competition, but it's lightweight and native, so it's instant and it organizes your files well.

Not strictly an IDE, but if configured correctly, Vim works a little better.

+4
source

Take a look at Textmate . This is essentially a text editor on steroids, but it has some really interesting features that make programming in all languages ​​/ frameworks (including Rails) easy. The main plus is the "Bundles", which allows you to use keyboard shortcuts to insert all kinds of code fragments. When I purchase Eclipse, I really like Textmate that it is very light and fast. The downside is that it is not free (but, I think, you get what you pay for).

Speaking of Eclipse, I also found Aptana Studio 3 (essentially a plugin for Eclipse) to be very good for Rails. Many good features, including autocomplete (as is possible with a dynamically typed language). The only drawback is, as a rule, bloating Eclipse.

+1
source

Source: https://habr.com/ru/post/1380939/


All Articles