Andrew Oberstar

7 Languages: Ruby

March 8, 2012

I did end up buying Seven Languages in Seven Weeks. This book covers the following languages:

This book isn't trying to teach the details of all 7 languages. The author admits that would be a foolish pursuit. Instead, each chapter is designed to give you a flavor for what makes the language unique. What I found most interesting is that the author (Bruce Tate) doesn't actually teach you how to do most of the exercises. He gives some examples that give you a taste, but trusts that you are smart enough to use Google to find some reference material.

I just finished the Ruby section, so here's my take on the language. I won't bother describing what Ruby is for two reasons: it's insanely popular right now (Ruby on Rails) and that's what Wikipedia's for.

The biggest thing that struck me as I learned some of the features of Ruby, was how similar it is to Groovy. Groovy is an extension of Java that provides a lot (I mean a lot) of the features Ruby does. Groovy isn't as pure as Ruby, given it's deep tie into Java, but it helped me pick up a lot of the concepts very quickly.

Some key features:

Ruby as a language seems pretty interesting. Tate talked about how Ruby is great for rapid development. One of the reasons I've been wary about Ruby before is the performance. However, Tate points out that worrying about performance before you even having anything is pointless pre-optimization. Better to develop something quickly that might perform poorly if you get a significant user base, than to never finish something in Java because there's so much extra code to write. Though, since I can do most of the same stuff in Groovy, and I'm already familiar with it, I'm not sure how likely it is I'll use Ruby for anything.

JRuby (an implementation of Ruby for the JVM) is also interesting to me. I've never used Ruby's gem system from a programming standpoint, but I have tried to install ruby apps before. When I tried installing Gitorius there were so many ruby dependencies to deal with installing, that I never got it to work. It just wasn't worth the time. I'm hoping that JRuby has a nicer way of managing its gem equivalents.