Ruby IDEs

40 views
Skip to first unread message

nada

unread,
Feb 28, 2012, 9:46:48 AM2/28/12
to Ruby on Rails: Talk
Hi,

I'm a novice in Ruby , I want to ask what is the best IDEs to use Ruby
for beginners ?

Is eclipse a good choice ?

any idea?

Thanks a lot!
Nada

Valery Kvon

unread,
Feb 28, 2012, 10:38:16 AM2/28/12
to rubyonra...@googlegroups.com
On 28.02.2012, at 18:46, nada wrote:

> Hi,
>
> I'm a novice in Ruby , I want to ask what is the best IDEs to use Ruby
> for beginners ?
>

TextMate, although it is not IDE…
+ *nix console :)

jason white

unread,
Feb 28, 2012, 10:44:02 AM2/28/12
to rubyonra...@googlegroups.com
I use RedCar or Sublime




--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.


Colin Law

unread,
Feb 28, 2012, 10:47:57 AM2/28/12
to rubyonra...@googlegroups.com
On 28 February 2012 14:46, nada <nn....@gmail.com> wrote:
> Hi,
>
> I'm a novice in Ruby , I want to ask what is the best IDEs to use Ruby
> for beginners ?
>
> Is eclipse a good choice ?

In my opinion, no. I find it better not to use an ide at all. Use a
decent editor with ruby support (I use jedit with the appropriate
plugins which is free and multi-platform) and use the terminal for the
rest.

Apart from anything else if you have a problem when using the ide
there will be many fewer people here who will be able to help.

Colin

vishal singh

unread,
Feb 28, 2012, 11:40:35 AM2/28/12
to rubyonra...@googlegroups.com
use aptana studio 3 it's free

Matt Slay

unread,
Feb 28, 2012, 1:45:29 PM2/28/12
to Ruby on Rails: Talk
I highly suggest RubyMine. It is the most complete IDE I have used.

http://www.jetbrains.com/ruby/

It cost $69 for a personal license. It's worth every penny. You can
get a 30 day free license to test it out.

People who tell you they don't use an IDE, but they use some text
editor with a gazillion plug-ins, are just fooling you... They are
basically trying to build their own IDE anyway. You might have a good
one to start with.

FaBritze

unread,
Feb 28, 2012, 1:48:22 PM2/28/12
to Ruby on Rails: Talk
You can use Eclipse with Aptana Studio Plugin, or as a standalone
Aptana version, but an text editor it's more usefull and i recommend
Sublime Text (http://www.sublimetext.com/)

Evan Misshula

unread,
Feb 28, 2012, 2:19:05 PM2/28/12
to rubyonra...@googlegroups.com
I had used Netbeans for Java. Trying to use it for Ruby was a
disaster. I would stick to an editor and get comfortable at the
command line. (FYI I use Emacs but I know that is not the most
popular choice.)

> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To post to this group, send email to rubyonra...@googlegroups.com.
> To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
>

--
Evan Misshula
Doctoral Student (Criminal Justice)
CUNY John Jay
"Let us reform our schools, and we shall find little reform needed in
our prisons."
       John Ruskin, Unto This Last, essay 2 (1862)
       English critic, essayist, & reformer (1819 - 1900)

"Instruction does much, but encouragement does everything." Johann
Wolfgang Von Goethe
www.snrg-nyc.org

Mohamad El-Husseini

unread,
Feb 28, 2012, 2:58:58 PM2/28/12
to rubyonra...@googlegroups.com
I use Sublime Text 2. It's a super fast text editor and extremely extensible.

soldier.coder

unread,
Feb 28, 2012, 9:20:00 PM2/28/12
to Ruby on Rails: Talk
First: Free your mind from the shackle that comes from false belief
that IDE's are necessary for superior productivity. IDE's are great
for compiledh languages like C or C++ as they can spot syntax errors
that will cause your program to not compile. Instead, embrace
Behavior Driven Development, write tests for code you haven't written
yet, tests for code you have written, consider how to refactor the
code that results. Move faster by going slower! Learn to wield your
editor like a samurai's sword -- an extension of yourself.

From Agile Web Development with Rails:
"It may surprise you to know that most Rails [and Ruby] developers
don't use fully fledged IDE's for Ruby or Rails (although some of the
environments come close). Indeed many Rails developers use plain old
editors. And it turns out that this isn't as much of a problem as you
might think. With other less expressive languages, programmers rely
on IDEs to do much of the grunt work for them, because IDE's do code
generation, assist with navigation, and compile incrementally to give
early warning of errors.
With Ruby, however, much of this support just isn't necessary. Editors
such as Textmate and BBEdit [or E for Windows, or VIM for Linux] give
you 90 percent of what you'd get from and IDE but are far lighter
weight. Just about the only useful IDE facility that's missing is
refactoring support."


SC

Paul

unread,
Feb 29, 2012, 9:13:00 AM2/29/12
to rubyonra...@googlegroups.com
+1 for RubyMine. Everything is at your fingertips, and the debugging
is great. I keep discovering new features that speed up development.

Max Schubert

unread,
Feb 29, 2012, 9:37:35 AM2/29/12
to rubyonra...@googlegroups.com
Tmux + tmuxinator + vim + Janus (bundle of really useful vim plugins
for ruby developers) - just started using this combo and it is great -
lets you easily build your own very powerful IDE.

Max

Stanislav Stoyanov

unread,
Mar 1, 2012, 1:38:53 AM3/1/12
to Ruby on Rails: Talk
+1 for Vim. I prefer the Linux console version.

On 29 фев, 09:37, Max Schubert <max.schub...@gmail.com> wrote:
> Tmux + tmuxinator + vim + Janus (bundle of really useful vim plugins
> for ruby developers) - just started using this combo and it is great -
> lets you easily build your own very powerful IDE.
>
> Max
>

Morozov Maksim

unread,
Feb 29, 2012, 9:43:25 AM2/29/12
to rubyonra...@googlegroups.com

Douglas Birch

unread,
Mar 1, 2012, 9:22:21 AM3/1/12
to rubyonra...@googlegroups.com
nada wrote in post #1049268:

I recommend working through the Ruby on Rails 3 Tutorial by Hartl ... he
walks you through how to use a simple editor + command line expressions
to get the job done ... in addition he introduces you to BDD and a nice
set of modern gems to include in your dev kit ...

After that if you still want to explore an IDE, go for it - I did and
ended up with RubyMine although I still end up using the command line
for things here and there.

--
Posted via http://www.ruby-forum.com/.

soldier.coder

unread,
Mar 1, 2012, 11:56:15 PM3/1/12
to Ruby on Rails: Talk
Since you are a beginner, take some advice -- give up the idea of
getting an IDE.

Ricardo Pontes

unread,
Mar 1, 2012, 11:57:53 AM3/1/12
to rubyonra...@googlegroups.com
+ 1 Sublime Text 2, fast and versions to Mac, Linux and Windows....

2012/3/1 Douglas Birch <li...@ruby-forum.com>
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.




--
Ricardo Pontes da Silva
Reply all
Reply to author
Forward
0 new messages