From: Greg Hauptmann Date: 2007-03-20T21:26:55+09:00 Subject: Re: does Ruby not support multiple "initialize" methods for a class??? ------=_Part_92998_3568796.1174393612531 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline I have a class that can be created from a couple of scenarios, and for each the initial data to populate the class is different. I was going to create two "initialize" methods with their own specific method signature to cover off these two scenarios however I guess I will need to perhaps just create two separate/normal methods for this. Perhaps then it would be like: a = Klass.new a.create_for_scenario_one (...) ------=_Part_92998_3568796.1174393612531--