10 Things Every Java Programmer Should Know About Ruby

This make factories trivial

Since Classes create instances of themselves, they are the ultimate factory object.

    def create_from_factory(factory)
      factory.new
    end

    obj = create_from_factory(Array)