From: Justin Collins Date: 2006-04-23T15:41:26+09:00 Subject: Re: Linking Woes Wes wrote: > Here ya go > > I made two files, copied what you posted, and it worked fine. Since the load command is working for you, the file is being loaded. Are you perhaps loading a different copy of the file? That's all I can think of. You might try putting some command like > puts "I loaded!" somewhere in the Profile.rb file (maybe at the end) to make sure it's actually being loaded. Another thing to try is running ruby with the -d option to check for less obvious problems. On an unrelated topic, you can replace all the methods like > def username= (username) > @username = username > end with > attr_accessor :username Just like you used attr_reader. Hope that helps somewhat. -Justin