From: _why Date: 2007-02-12T13:31:05+09:00 Subject: Re: using YAML as config On Mon, Feb 12, 2007 at 10:21:54AM +0900, Larry Edelstein wrote: > > - !mydomain,mydate/Company > name: TuesdayCo > subthings: > - !mydomain,mydate/Person > name: Ruby Tuesday > - !mydomain,mydate/Person > name: Tuesday Weld > - !mydomain,myDate > name: FridayCo > subthings: > etc. > [...] > > How should I do this? Heya, larry! The easy way is like this: class Company yaml_as 'tag:mydomain.com,2007:Company' end class Person yaml_as 'tag:mydomain.com,2007:Person' end _why