From: cmdjackryan@... Date: 2007-03-22T00:31:18+09:00 Subject: Re: Execution scope of Ruby artifacts running outside of an object (plain old script)? Griff wrote: > Hi folks, > > What is the scope of execution of a plain old Ruby script? > > For example, if you write a script that does not define any classes > and you use reflection to get the current class, you discover that it > is "Object". > > Eg on Windows: > > echo puts "#{self.class}" > temp.rb > ruby temp.rb > Object > > I am interested in where this behavior is defined. I didn't see any > mention of this in the Pickaxe2 book, but I could have overlooked it. > > > From the Pickaxe, 2nd Edition, page 11: "Everything you manipulate is an object, and the results of those manipulations are themselves objects." Every single thing you use, is derived, in the end from Object, the great-grandfather of everything Ruby. At least that is how I've understood the Pickaxe in that regard. On the other hand, I only hack Ruby into my keyboard, and don't hack Ruby. ;) Cheers -Phil