Eigen method

What do others think of the idea of #eigen method:

class Foo
  eigen.attr_accessor :bar
end

Foo.bar = 100
Foo.bar  #=> 100

Basically #eigen provides a convenient way to call methods on an objects
singleton class w/o having to open a class << self block.