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

I consider myself experienced programmer in the sense that I have been working with various different languages and abstractions all the way from asm to object-oriented C++ and object-functionalish Python code.

I'm currently looking for a book about Ruby. The ideal book would assume that the reader already knows how to program some language and just tells you what makes this language special and how to effectively use it. Stack has several questions about Ruby books but none of them seem to fit this niche. I'd appreciate if you could suggest some books fitting my criteria.

share|improve this question
1  
Just to clarify: Pure ruby or rails? They have become synonymous to me. :) – cakeforcerberus Aug 19 '09 at 15:08
1  
pure ruby is enough. rails is just a framework ;) – lhahne Aug 19 '09 at 15:13

closed as not constructive by Craigy, Bo Persson, Dervall, Clyde Lobo, forsvarir Aug 30 '12 at 7:03

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.

9 Answers

up vote 9 down vote accepted

In this case, I would suggest two. Read The Ruby Programmng Language. This will tell you what the language is, and what neat tricks its structure and syntax allow you to do (it is by far the best book for this purpose). To link this knowledge to the world of programming problems, everyday and otherwise, read The Ruby Way.

share|improve this answer
2  
The Ruby Way is getting a bit long in the tooth, though. Aside from the obvious fact that it doesn't cover Ruby 1.9, a lot of the best practices and styles in the Ruby community have changed significantly since the book came out. Nowadays, the Well-Grounded Rubyist is probably a better choice. I actually own The Ruby Way and not The Well-Grounded Rubyist, but if I had to make that decision now instead of two years ago, I would buy the latter. – Jörg W Mittag Aug 19 '09 at 18:25

I'd second The Ruby Programming Language as a good choice, but I'd also recommend David Black's The Well-Rounded Rubyist. I've just finished this book, and it had much to offer even to someone who's been programming professionally in Ruby for more than 2 years. Its discussions of how Ruby objects are different than you might expect, and how modules, classes, and objects interact are very clear and very informative.

share|improve this answer

Ruby Best Practices is a difficult book, but it covers advanced topics. It's great if you want to have a deeper understanding of the language.

share|improve this answer
I found it very difficult to read and a collection of odds and ends – user138512 Aug 20 '09 at 11:43
How proficient are you in Ruby? I mentioned it's a difficult book if you don't have a good Ruby foundation. – Tempus Aug 20 '09 at 12:17

why's (poigant) guide to Ruby

http://mislav.uniqpath.com/poignant-guide/

share|improve this answer
My favorite. :) – Jamie Hale Aug 19 '09 at 16:25
4  
The Poignant Guide is dead, unfortunately. Apparently, _why the lucky stiff has suffered pretty vile attacks for months, enough so that he tweeted just hours ago that he had lost any interest in programming, and consequently he deleted every single one of his online properties, including his Twitter and GitHub accounts, his personal, arts, code, and projects websites, his personal, arts, and code blogs, the archives of his Ruby blog, the Shoes, Hackety Hack, Hpricot and Potion websites, Try Ruby and, yes, also the Poignant Guide. – Jörg W Mittag Aug 19 '09 at 18:33
Holy crap. this is really sad for the Ruby community, there is a copy of the guide here: github.com/binary42/why-archive/tree/master – Sam Saffron Aug 19 '09 at 21:46
the link is not working , do anyone have other copy of the guide? – wizztjh Jan 12 '11 at 7:35

Many books for you.

"The ruby programming language" (The content looks like the classics book "The C programming language")

"Practical Ruby for System Administration" (Very well)

"Design Patterns in Ruby"

"Practical Ruby Gems"

share|improve this answer
"Design Patterns in Ruby" is a great book! +1 – rsc Jan 24 at 9:36

Programming Ruby-The pragmatic programmer's guide
http://www.rubycentral.com/book/
The best book

share|improve this answer

You may wish to try either:-

Beginning Ruby by Peter Cooper published by "Springer", it provides a task based approach to learning Ruby and is useful for those with some programming knowledge already

OR

Ruby: Visual QuickStart Guide by Larry Ullman published by "Pearson"

This one aims to cover all levels and does start by explaining the basic principles of Object orientated programming

share|improve this answer
1  
I doubt the OP needs something "explaining the basic principles of Object orientated programming" – George Jempty Aug 19 '09 at 14:13
The detail offered in the context of this book (compared to the other book suggested) is intended to give a clear understanding of where the book starts off, before going on to more advanced levels (which it certainly does); other users use this site and such expanded information may be of use to more than one enquirer! The originator of the question will no doubt be more than able to select from the response offered. – user154924 Aug 19 '09 at 14:51

I recommend Ruby Cookbook. Recipes range from intermediate to advanced and I think it's just what you're looking for.

share|improve this answer
I don't think I need examples but rather something about the language itself. – lhahne Aug 19 '09 at 15:21

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