I'm new to Ruby 1.9 and am quite baffled by some of these newish classes and modules.
A list of Ruby 1.8.7 classes and modules is here. All of these are perfectly sensible. I can examine them in irb 1.8.7, for example:
>> Data.class
=> Class
>> Kernel.class
=> Module
>> NameError.class
=> Class
They're all classes and modules.
Then, we go to the documentation for the Ruby 1.9.3 classes and modules, found here. Now we see some new entries, one of which is ARGF. Really?!
In Ruby 1.8.7, ARGF isn't a class or a module:
>> ARGF.class
=> Object
But in Ruby 1.9.3, I see this:
>> ARGF.class
=> ARGF.class
>> ARGF.superclass
NoMethodError: undefined method `superclass' for ARGF:ARGF.class
from (irb):3
from /usr/local/bin/irb:12:in `<main>'
>> ARGF.class.superclass
=> Object
So what this tells me is that
- The documentation says that
ARGFis a class, but it isn't really a class. - The class of the
ARGFobject isARGF.classor somehow the class of this object is a class which happens to be a property of the object (?!)
What is the explanation here? Is there a metaclass here? A virtual class? Singleton class? Something else? Why does the documentation now place ARGF as a class when the actual class is something else? Or is it the same thing? What exactly was changed in 1.9? I suspect the new way is supposed to make more sense but so far for me this situation is very far from my "least surprise."
