From: Brian Candler Date: 2009-03-29T20:40:19+09:00 Subject: Re: Dynamic object creation in ruby > frank = Object.const_get("Master::Person").new("Frank") > > Does anyone know why the second way fails? frank = Master.const_get("Person").new("Frank") -- Posted via http://www.ruby-forum.com/.