Live data from Hacker News

Ruby editor?

news.ycombinator.com

11–18 of 18 posts

Re: Ruby editor?

#12
Since you said installer I might assume use of windows, take a look at notepad++ (http://notepad-plus-plus.org/)

OS x or linux check out gedit. (http://projects.gnome.org/gedit/ Downloads on right side of front page.) Also available for windows, but notepad++ is a little easier to use if you are used to windows programs.

Re: Ruby editor?

#13
My setup on Ubuntu is as follows. I use a drop down terminal called Yakuake. It drops down from the top of my screen when I press F12. From there I can create a ruby document by typing

vim example.rb

You don't have to use or learn all of vims features straight away. I probably use 1% of it but I like it. :w to save, :wq to save and quit.

Re: Ruby editor?

#15

You should try http://sublimetext.com It's sort of like textmate but also cross-platform, so in theory you won't have to learn another editor. I'd learn it myself if I wasn't already used to textmate.

I like this editor a lot also. Sublime Text 2 is quite nice. Enables me to use a nice editor across all of the platforms on which I have to develop.

Re: Ruby editor?

#17

From Zed Shaw's "Learn Python the Hard Way": >If a programmer tells you to use vim or emacs, tell them no. These editors are for when you are a better programmer. All you need right now is an editor that lets you put text into a file. We will use gedit because it is simple and the same on all computers. Professional programmers use gedit so it's good enough for you starting out.

gedit with this https://github.com/gmate/gmate

Been suggesting Ubuntu+gedit+gmate to my friends who are starting with programming. It's better than the editor that ships with Windows (most in my geographic region use windows... like 99%).

Post reply on HN