module DSLKit::Eigenclass

def eigenclass

Returns the eigenclass of this object.
def eigenclass
  class << self; self; end
end

def eigenclass_eval(&block)

Evaluates the _block_ in context of the eigenclass of this object.
def eigenclass_eval(&block)
  eigenclass.instance_eval(&block)
end