From: Salai Khine on
[Note: parts of this message were removed to make it a legal post.]

Dear Ruby Folk,

Do you know a good Ruby Design Pattern Tutorials Site or Documents? I am
still in beginner level in Ruby but.. for my school i need to know in
the following ruby design pattern.

- Visitor Pattern
- Composite Pattern
- Decorator Pattern
- Observer pattern

many thanks in advance.

best regards,
salai.

From: Bharat Ruparel on
I do not know a site but I do know a book which is excellent:
http://www.amazon.com/Design-Patterns-Ruby-Addison-Wesley-Professional/dp/0321490452/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1215019949&sr=1-1
Hope this helps.
Bharat
--
Posted via http://www.ruby-forum.com/.

From: pat eyler on
Russ Nelson wrote a great book, I reviewed it here:

http://on-ruby.blogspot.com/2007/12/design-patterns-in-ruby-review.html

and interviewed him about it here:

http://on-ruby.blogspot.com/2008/01/russ-olsen-interview.html

enjoy.


On Wed, Jul 2, 2008 at 11:15 AM, Salai Khine <sayakyi(a)gmail.com> wrote:
> Dear Ruby Folk,
>
> Do you know a good Ruby Design Pattern Tutorials Site or Documents? I am
> still in beginner level in Ruby but.. for my school i need to know in
> the following ruby design pattern.
>
> - Visitor Pattern
> - Composite Pattern
> - Decorator Pattern
> - Observer pattern
>
> many thanks in advance.
>
> best regards,
> salai.
>



--
thanks,
-pate
-------------------------
Duty makes us do things, Love make us do things well.
http://on-ruby.blogspot.com http://on-erlang.blogspot.com
http://on-soccer.blogspot.com

From: Sean Allen on
I have to say, I found that book pretty lacking. It the worst design
patterns book I ever read.
I would call it 'marginally passable'.

On Jul 2, 2008, at 1:30 PM, Bharat Ruparel wrote:

> I do not know a site but I do know a book which is excellent:
> http://www.amazon.com/Design-Patterns-Ruby-Addison-Wesley-Professional/dp/0321490452/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1215019949&sr=1-1
> Hope this helps.
> Bharat
> --
> Posted via http://www.ruby-forum.com/.
>


From: Martin DeMello on
On Wed, Jul 2, 2008 at 10:15 AM, Salai Khine <sayakyi(a)gmail.com> wrote:
> Dear Ruby Folk,
>
> Do you know a good Ruby Design Pattern Tutorials Site or Documents? I am
> still in beginner level in Ruby but.. for my school i need to know in
> the following ruby design pattern.
>
> - Visitor Pattern
> - Composite Pattern
> - Decorator Pattern
> - Observer pattern

At least the last three are fairly trivial in ruby - I suggest just
trying to implement them yourself to get a handle on them. Ask the
list for help.

martin