Design Patterns and Ruby

Are therre any good design pattern resources realted to coding in ruby
on the web? I’ve only been able to find a bit on the singleton and
decorator patterns.

Don;t really waana buy a book at the mo.

CIA

-Ants

Are you talking about how to implement certain design patterns in Ruby
or
about design patterns themselves? The whole idea of design patterns is
that
they are language-agnostic patterns. If you know how they’re supposed to
work, then the implementation should be easy in any language you are
familiar with.

Jason

On Apr 13, 2007, at 10:32 AM, Anthony G. wrote:

Are therre any good design pattern resources realted to coding in
ruby on the web?

Here’s one resource:

http://wiki.rubygarden.org/Ruby/page/show/ExampleDesignPatternsInRuby

James Edward G. II

James Edward G. II wrote:

On Apr 13, 2007, at 10:32 AM, Anthony G. wrote:

Are therre any good design pattern resources realted to coding in ruby
on the web?

Here’s one resource:

http://wiki.rubygarden.org/Ruby/page/show/ExampleDesignPatternsInRuby

And recall that Ruby has some constructs that
make certain of the classic design patterns
trivial.

Consider also,

http://groups.google.com/group/comp.lang.lisp/msg/8a0d6cedabef65da
http://newbabe.pobox.com/~mjd/blog/prog/design-patterns.html

Regards,