Design patterns in ruby: any good?

Has anybody read it? Does it come recommendafied? I still haven’t
found a great tech bookstore in Los A. so I haven’t browsed it.


Giles B.

Podcast: http://hollywoodgrit.blogspot.com
Blog: http://gilesbowkett.blogspot.com
Portfolio: http://www.gilesgoatboy.org
Tumblelog: http://giles.tumblr.com

On Jan 8, 2008 9:46 AM, Giles B. [email protected] wrote:

Has anybody read it? Does it come recommendafied? I still haven’t
found a great tech bookstore in Los A. so I haven’t browsed it.

I liked it. If you’d like the overview, I reviewed it here:

I’m almost finished and I’m liking it. It helps me put my thoughts
ordered and I have learned a few things too.

AEM

Has anybody read it? Does it come recommendafied? I still haven’t
found a great tech bookstore in Los A. so I haven’t browsed it.

I liked it. If you’d like the overview, I reviewed it here:

On Ruby: Design Patterns In Ruby, a review

Excellent review! Gives me an idea for a good blog post, too -
patterns and idioms in the Rails source.


Giles B.

Podcast: http://hollywoodgrit.blogspot.com
Blog: http://gilesbowkett.blogspot.com
Portfolio: http://www.gilesgoatboy.org
Tumblelog: http://giles.tumblr.com

On Jan 8, 2008 1:26 PM, Giles B. [email protected] wrote:

Has anybody read it? Does it come recommendafied? I still haven’t
found a great tech bookstore in Los A. so I haven’t browsed it.

I liked it. If you’d like the overview, I reviewed it here:

On Ruby: Design Patterns In Ruby, a review

Excellent review! Gives me an idea for a good blog post, too -
patterns and idioms in the Rails source.

Nice review, but coverage of the GoF patterns? But I’ve read so many
otherwise intelligent folks say that the GoF patterns were created to
address the limitations of less flexible languages, and that there’s
no need for them in a language as powerful as Ruby…

What gives?

Jake

On Jan 8, 2008 1:26 PM, Giles B. [email protected] wrote:

Has anybody read it? Does it come recommendafied? I still haven’t
found a great tech bookstore in Los A. so I haven’t browsed it.

I liked it. If you’d like the overview, I reviewed it here:

On Ruby: Design Patterns In Ruby, a review

Excellent review! Gives me an idea for a good blog post, too -
patterns and idioms in the Rails source.

Nice review, but coverage of the GoF patterns? But I’ve read so many
otherwise intelligent folks say that the GoF patterns were created to
address the limitations of less flexible languages, and that there’s
no need for them in a language as powerful as Ruby…

What gives?

Jake

Nice review, but coverage of the GoF patterns? But I’ve read so many
otherwise intelligent folks say that the GoF patterns were created to
address the limitations of less flexible languages, and that there’s
no need for them in a language as powerful as Ruby…

What gives?

I was wondering about that myself. I think the Singleton pattern gets
used a lot in Ruby, though. Definitely a question worth asking.


Giles B.

Podcast: http://hollywoodgrit.blogspot.com
Blog: http://gilesbowkett.blogspot.com
Portfolio: http://www.gilesgoatboy.org
Tumblelog: http://giles.tumblr.com

On Jan 8, 2008, at 2:03 PM, Giles B. wrote:

Nice review, but coverage of the GoF patterns? But I’ve read so many
otherwise intelligent folks say that the GoF patterns were created to
address the limitations of less flexible languages, and that there’s
no need for them in a language as powerful as Ruby…

What gives?

I was wondering about that myself.

Ruby isn’t immune to design patterns.

Some patterns are very trivial in Ruby (Visitor is basically just a
method that takes a block), and some others don’t make as much sense
in Ruby (Factory isn’t nearly as important with classes being objects
themselves). Ruby also inspires some new patterns, I believe. The
ideas that led to the design patterns and many of the patterns still
apply to Ruby in some fashion though.

James Edward G. II

On Jan 8, 2008 8:08 PM, Jake C. [email protected] wrote:

Nice review, but coverage of the GoF patterns? But I’ve read so many
otherwise intelligent folks say that the GoF patterns were created to
address the limitations of less flexible languages, and that there’s
no need for them in a language as powerful as Ruby…

What gives?

IMO, patterns give you a common vocabulary to speak with other
developers and a way to refactor existing code.
Raganwald wrote a good blog entry about it
http://weblog.raganwald.com/2008/01/problem-with-problem-with-design.html

Giles B. wrote:

Has anybody read it? Does it come recommendafied? I still haven’t
found a great tech bookstore in Los A. so I haven’t browsed it.

Hello Giles:

You may also find this Scribd document interesting:

There are also a couple of other interesting documents regarding ruby on
Scribd (try a search for ruby) like

Michael

Hello Giles:

You may also find this Scribd document interesting:

Gof Patterns in Ruby | PDF | Ruby (Programming Language) | Programming Paradigms

Gracias! It was useful actually – I forgot about Singleton being in
the std lib.

Pat’s review says the book covers only 14 of the GoF’s original 23
patterns, I think that’s the explanation for the disparity between
“Ruby makes design patterns useless!” vs. “design patterns can be
useful in Ruby.” Presumably the missing 9 are considered either not
necessary, or just less interesting, in Ruby.


Giles B.

Podcast: http://hollywoodgrit.blogspot.com
Blog: http://gilesbowkett.blogspot.com
Portfolio: http://www.gilesgoatboy.org
Tumblelog: http://giles.tumblr.com

Giles B. wrote:

Nice review, but coverage of the GoF patterns? But I’ve read so many
otherwise intelligent folks say that the GoF patterns were created to
address the limitations of less flexible languages, and that there’s
no need for them in a language as powerful as Ruby…

What gives?

I was wondering about that myself. I think the Singleton pattern gets
used a lot in Ruby, though. Definitely a question worth asking.

Well … I have the book. I’m totally unfamiliar with the GoF book. I
know it’s a classic, but I’ve just never gotten around to learning
design patterns. So I got the book and I like it. If you’re already an
expert on design patterns from another language, for example, from “Head
First Design Patterns” (Java) I rather doubt you’ll learn anything from
this book that you don’t already know. But for me, it’s exactly what I
need. :slight_smile:

On Jan 8, 8:46 am, Giles B. [email protected] wrote:

Has anybody read it? Does it come recommendafied? I still haven’t
found a great tech bookstore in Los A. so I haven’t browsed it.

I thought it was well written. Personally, I didn’t really learn
anything new from it, but I’ve strongly suggested that the less
experienced developers on my team give it a read. Perhaps it’s got
something to do with the fact that it uses Ruby to discuss the
patterns, but the book also seems to be more approachable than its GoF
counterpart. (Could also just be that I’ve had a lot more experience
with such things since I read the GoF book the first time.)


Regards,

John W.

On Jan 8, 2008 3:02 PM, Thomas W. [email protected]
wrote:

IMO, patterns give you a common vocabulary to speak with other
developers and a way to refactor existing code.
Raganwald wrote a good blog entry about it
Another problem with problems with design patterns

Here’s a good blog on this “controversy”

dean

On Jan 11, 2008 3:37 PM, pat eyler [email protected] wrote:

I didn’t want to say anything when this was first asked, because I was in
the middle of an interview with Russ Olsen (the author) at that point. I just
posted the interview this morning, so if people are still wondering why
design patterns are important even in a language like Ruby, you might
want to take a look:

On Ruby: Russ Olsen Interview

Thank you for the interview! I think I go and buy the book right now.

On Jan 8, 2008 12:08 PM, Jake C. [email protected] wrote:

On Jan 8, 2008 1:26 PM, Giles B. [email protected] wrote:
Nice review, but coverage of the GoF patterns? But I’ve read so many
otherwise intelligent folks say that the GoF patterns were created to
address the limitations of less flexible languages, and that there’s
no need for them in a language as powerful as Ruby…

What gives?

I didn’t want to say anything when this was first asked, because I was
in
the middle of an interview with Russ Olsen (the author) at that point.
I just
posted the interview this morning, so if people are still wondering why
design patterns are important even in a language like Ruby, you might
want to take a look:

M. Edward (Ed) Borasky wrote:

Well … I have the book. I’m totally unfamiliar with the GoF book. I
know it’s a classic, but I’ve just never gotten around to learning
design patterns. So I got the book and I like it. If you’re already an
expert on design patterns from another language, for example, from “Head
First Design Patterns” (Java) I rather doubt you’ll learn anything from
this book that you don’t already know. But for me, it’s exactly what I
need. :slight_smile:

Far be it for me to disagree with someone who seems about ready to buy
my book, but… oh well.

You see, I think that if you picked up a book on design patterns in Java
on your way to writing a program in Ruby, you will be making a serious
mistake. As others have pointed out, Ruby is different from Java and the
other traditional programming languages in some serious ways: open
classes,
and dynamic typing to name just a couple.

What I did in the book was to stand back and look at each pattern and
ask
a couple of questions: “What problem is this pattern trying to solve?”
and, critically, “How do people typically solve this problem in Ruby?”

Turns out that sometimes the Ruby solution is pretty much the same as
the Java solution. A Composite in Ruby is pretty much the same as a
Composite in Java. But for many of the patterns - here Commands and
Iterators come to mind - the Ruby solution is radically different
than the Java solution. Why? Those are the kind of questions that I
tried to answer in the book.

One of the nice things about Ruby is that many problems are much easier
to solve. The last thing we need is folks writing Java or C# code in
Ruby. We need people writing Ruby in Ruby.