Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I go about learning Ruby quickly and easily without buying expensive programming books?

share|improve this question
show 1 more comment

closed as not constructive by ChrisF, Will Sep 29 '11 at 13:29

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

31 Answers

1 2
up vote 76 down vote accepted

Read Why's (Poignant) Guide to Ruby CHUNKY BACON!

share|improve this answer
3  
now i want some chunky bacon. – levi rosol Oct 17 '08 at 13:40
3  
a mirror of the Poignant guide (pdf) as the above link is dead: ember.co.nz/resources/whys-poignant-guide-to-ruby – fretje Aug 24 '09 at 8:53
10  
this book is funny if your english is advanced enough to understand following excerpt: "n April, the callow lilies came back. They stretched their baby angel wings out and reached for the world. Gently, their tendrils caressed the sullen fence posts until even they lilted lovelier. From her bedroom window, Lara watched the lilies exude their staunch femininity". exude, staunch, lilted, caress, tendrils, sullen, callow... obviously mine isn't. so I gave up on it. – Comptrol Jun 28 '10 at 19:16
14  
I tried this book, it tested my patience, it is good if you want to improve your English primarily and then learn Ruby secondarily. I am disappointed. – hrishikeshp19 Mar 9 '12 at 17:38
4  
This books is stupid. – Ronnie Overby Oct 7 '12 at 20:17
show 6 more comments

I would recommend http://tryruby.org.

share|improve this answer
2  
Andrew McElroy and David Miani reengineered the project and put it here: tryruby.org – dertoni Jun 7 '10 at 13:43
show 1 more comment

Best way to learn any language is to use it. :)

share|improve this answer

First of all, I recommend you skip Why's Poignant Guide - it's fun, but not suited for learning how to program in Ruby.

Get an introductory book on Rails development instead, such as Agile Web Development with Rails, start programming and learn the language as well as the framework as you go along - learning by doing is the best method I know. And by learning the Rails APIs you also get an impression of common idioms in the Ruby world. Additionally you will need good online resources in order to look up things that are not mentioned in your book. I like the API reference on the Programming Ruby website and the Rails Brain.

And then you might want to use Learning by Testing so you don't forget the things you learned.

Good luck!

share|improve this answer
1  
also, he never says he wants rails ;) – fly.floh Feb 28 '09 at 23:38
8  
I thought I was the only one disappointed by Why's Poignant Guide. Thanks. – deceze Jul 10 '09 at 3:35
show 1 more comment

This is the obvious answer, but many tutorials are available from the documentation page on ruby-lang.org. There are many gems in there, including Why's (poignant) Guide to Ruby and some small articles on similarities and differences between ruby and other languages. I recommend the links on the documentation page highly, and once you know enough ruby, you also have links to a bunch of reference docs.

share|improve this answer
show 1 more comment

I absolutely agree with Rudd (and if I had enough reputation I'd have up'd his). I just wanted to point out that often you will hear of a book called the "Pickaxe." That is referring to following very popular book: "Programming Ruby: The Pragmatic Programmer's Guide, Second Edition"

Pragmatic Programmer Book
Online Version of the Pickaxe

share|improve this answer

Why's (Poignant) Guide is great. I would also recommend Programming Ruby (aka The Pickaxe Book). I always keep it within reach.

share|improve this answer

How do I go about learning Ruby quickly and easily without buying expensive programming books?

  1. Locate your local Ruby user group
  2. Join the mailing list
  3. Attend the meetings
  4. Ask great questions
  5. Hack, hack, hack
share|improve this answer

The book that really put it all together for me was The Ruby Way.

share|improve this answer
show 1 more comment

1. Use Your Library!

Do you have a decent library nearby? In Singapore, we have great selections in the local libraries. I got all my first ruby and rails books there. And the best way I know to check out books AND also check what is in the library is BookJetty. Try it out for your region .. .for me it works great.

After spending a bit of time with a ruby primer (I forget which), I went straight for rails, since I wanted to actually do something (Beginning Rails is my pick,. Still great, but now a bit dated since there are a few changes for Rails 2.x). Next: Social Networking Sites with Rails (very practical and covers most common features of a modern site). Then I started getting deeper into the language and wanted the O'Reilly cookbooks style (Rails Cookbook and Ruby Cookbook). Most recently I've loved "Pro ActiveRecord: Databases with Ruby and Rails"

The only duds I would warn you against are Rails for Dummies (worst kind of book ever) and, Ajax or Rails (95% you can find elsewhere or have seen before; and only about 20 pages of new, useful stuff. Also way outdated by now)

Actually, after describing all those books I realise you can see exactly what I've read and how I've rated them at my account on bookjetty!

2. Test yourself at Project Euler

Sometimes you need a challenge to find out if you really have learnt anything or not. I had some fun with Project Euler of late, and it really made me review my understanding of the ruby fundamentals.

share|improve this answer

I suggest just entering the water slowly, then going deeper as you're comfortable. Begin by finding a Ruby library or application you really like, or think could stand for some simple improvement. Then dig into the source code, and try to make a tiny adjustment to improve it. If you don't think you can improve it, try to make a small change, just for the sake of learning how to change and write Ruby code. Starting from scratch isn't as easy as modifying an existing creation.

If you want to improve your Ruby fu, I recommend two things:

  1. Read the source code of stuff written by "good" Ruby programmers. You'll have to find your own definition of "good", but a little googling should reveal who the gurus are.

  2. Lurk or even get involved in a/the Ruby community. ruby-talk mailing list, #ruby-lang and #ruby IRC channels, the mailing list or forum of a particular Ruby library or application, or even a meatspace Ruby user group.

  3. Eventually you'll want to write something from the ground up to scratch a personal itch. Don't forget to open source it so you can get peer review from whatever you joined in (2). :)

share|improve this answer

The Ruby Programming Language

Great book that treats you like an adult.

share|improve this answer

I found a few things together really helped.

1) The book "Agile Web Development with Rails, 3rd Edition" from the Pragmatic Programmers.

2) Railscasts.com. I found that reading the first section of the book, then following the screencasts really helped solidify the things I'd learned.

3) Everyday Active Record, which is kind of like the mix between Railscasts and Pragmatic Programmers is excellent, and tied a lot of concepts together for me.

HTH

share|improve this answer
show 1 more comment

I tried learning Ruby from _why's books, but failed. While his writing is amusing and inspired, he doesn't bring his point across efficiently. I eventually learned Ruby by trying. irb, the interactive ruby prompt, proved a valuable resource when trying to figure stuff out. When looking for specific features, I used Programming Language Examples Alike Cookbook before I eventually bought the Ruby Cookbook, which I still consider the best programming book I ever spend cash on.

Also, the Ruby Mentor Project might help you find someone that could do some 1 on 1 coaching from time to time.

share|improve this answer

Think back to a few small homework assignments you did at the beginning of college and redo them in Ruby. Using it is the best way to learn it. Then read a book.

share|improve this answer

Torrents of ebooks for one if you're not ethically opposed to that sort of thing. But the best way to learn the language is by experimenting with it, reading code samples and writing code. Reading a book as a primer certainly doesn't hurt but it's boring and solely trying to learn from a book is not the best way to learn psychologically. However, they do serve as good primers and if you're not ethically opposed to torrents you can get just about any ruby book for free in pdf format via torrents.

As for experimenting with the language, here's a simple plan:

rubyquiz.com has a plethora of code samples. Read through the quizzes and the solutions until you understand them. If you don't know a function consult ruby-doc.com to learn about the function, for instance, learn what parameters it takes and what it does.

If you don't understand a block of code try isolating sections of the code and running that code by itself. Tweaking the code source can be very elucidating. Then challenge yourself to rewrite sections of the code. for instance a poker game programmer might have chosen to build a deck by declaring suits and faces as single letters. ie ace of spades would be As. To do this he creates two separate strings. FACES = "AKJQT987654321" SUITS = "hcds". Without going into every detail, the way he builds the deck is with the each_byte function, going through each byte of the string to isolate each separate letter, then he changes them back to characters using .chr. Then, if you've read about a function like split Challenge yourself to build a deck with full words "ACE KING .... etc."

So just tweak code, read code, write code, and read a torrent book as a primer.

share|improve this answer
show 1 more comment

Start with writing Hello World :)

share|improve this answer
3  
puts 'Hello world' # I sure learned a lot! – titaniumdecoy Mar 20 '11 at 5:02

Online courses:

share|improve this answer

The easiest way to learn ruby is to find a small project that you know how to solve in another language and use ruby to solve it.

I found the Pickaxe book to be unnecessary. Bookmark http://ruby-doc.org/ instead.

If you're learning Rails, skip Agile Web Programming with Rails 2nd Edition. Get the 3rd edition (only available as PDF until Oct 15 2008). That book becomes out of date amazingly fast.

share|improve this answer

http://labuschin.com/rails Has plenty of links to ruby on rails tutorials. Its updated quite regularly. There are some really good links to blogs also.

share|improve this answer

The first step I took was reading www.rubycentral.com/book. After finishing the first chapters I was thinking to myself; you had me at "hello".length

I fully agree with the previous comment 'Best way to learn any language is to use it'. A good way to get inspiration for baby programs is to

  1. Google for interesting university assignments
  2. Do the practice problems at http://www.topcoder.com
  3. Look through http://www.rubyquiz.com/

Looking through ruby quiz is good because answers to each problem are posted.

share|improve this answer

download ruby ebooks

share|improve this answer

I learnt Ruby with the help of Mr. Neighborly's Humble Little Ruby Book. It's an excellent free-to-download introduction to Ruby with lots of examples, which I'd 100% recommend.

share|improve this answer

My Neighborly's is a pretty good read, and it's free so no complaints, but I'm finding a lot of the samples don't work when you type them in - at least not on the version of Ruby that comes with Mac OS X.

The example code that showed how to use class variables towards the end of chapter 2 was particularly confusing! :-\

However, having said that, using a bit of your own 'nous' and working out what might be going wrong is a good way to speed up the learning process if you already have a programming background and just want to get up to speed with Ruby.

share|improve this answer

I'm surprised I haven't seen RubyLearning on the list of answers...or maybe I'm being a dope and not seeing it; regardless, I recently began learning Ruby and I've tried Why's Poignant Guide as well as Ruby Koans; however, the most helpful and useful free guide that I've used that was extremely easy to follow is:

Ruby Learning

Follow the step-by-step tutorial and you'll see just how amazing the Ruby language is.

share|improve this answer

I also recently started learning Ruby and it took me quite some time to find the 'right' books for me.

Some people have suggested Why's (Poignant) Guide to Ruby, but I'd personally tell you to skip it. It seems to come to down to personal preference, but I just couldn't follow it. The style of the book distracted me and stopped me from learning much.

The 'Pickaxe' book (Programming Ruby) has taught me a bit, but after a while I found it hard to follow. It gives a great overview of all the features of Ruby, but I thought it was quite dry and hard to follow at times. Especially for a beginner.. I'll surely be picking it up again after I get better with the language though.

I know you didn't ask for book recommendations, but I'm gonna go ahead and link you the book I've been using myself and which has taught me a lot: Beginning Ruby. I had some Java programming experience before starting this book, but Ruby was completely new to me. However, after reading through the first four chapters I was already up to speed and able to write simple programs, even some that I use daily for university work now. The difference between this book and the Pickaxe book is that this one actually guides you through writing some applications, which has helped me, personally, a lot.

Ruby-Doc.org, the Ruby documentation website is a great resource and if you don't want to buy any books, I suggest going through some of the online guides that have been suggested above and figure out things on yourself. However, the risk with this way of learning is that you might not be doing things the 'right' way. You might be solving certain problems in a way much more difficult than 'professionals' would do it, but hey, if you manage to fix things yourself, you'll obviously learn a lot.

share|improve this answer

Write a blog engine. Something simple, preferably without a DB backend (Blosxom-like).

After all, you want to learn Ruby to write web apps, right?

share|improve this answer

I started by looking for PHP to Ruby tutorials, if you're already familiar with a language try searching for a "x to Ruby" guide.

share|improve this answer
1 2

protected by Bo Persson Jul 11 '12 at 21:48

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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