Posts Tagged ruby

Pimp my test on Mac with Growl

Please see this very good tip on how to integrate ZenTest autotest with growl: Pimp You .autotest

Splendid!

, , , ,

1 Comment

Ruby Enumerable#every

Martin Aumont created a gem that add an every method to enumerable: see his post.

The result is quite nice:

1
2
enum = [1.4, 2.4 ,3.4]
enum.every.floor        # [1, 2, 3]

, ,

No Comments

Learning Ruby

There is a free and fun way to learn ruby:  Why’s (poignant) Guide to Ruby

The book is full of humour and it makes it really easy and entertaining to read without losing the main goal of the book: learning ruby.

Although it is simple to read, on should have really good knowledge and understanding of OOP.

,

No Comments