Project

General

Profile

Actions

Feature #5505

closed

BasicObject#__extend__

Added by trans (Thomas Sawyer) over 12 years ago. Updated over 12 years ago.

Status:
Rejected
Assignee:
-
Target version:
[ruby-core:40492]

Description

Unless there is already some way to do it that I've overlooked, the it would be nice if there were still some way to extend an instance of BasicObject.

Probably the easiest way is defining #extend.

Updated by nobu (Nobuyoshi Nakada) over 12 years ago

Try Kernel.send(:extend_object, BasicObject.new)

Updated by matz (Yukihiro Matsumoto) over 12 years ago

  • Status changed from Open to Rejected

o = BasicObject.new
class <<o
include Enumerable
end

should work.

Updated by aprescott (Adam Prescott) over 12 years ago

On Fri, Oct 28, 2011 at 3:17 PM, Yukihiro Matsumoto wrote:

o = BasicObject.new
class <<o
include Enumerable
end

should work.

It doesn't, but this does:

o = BasicObject.new
class <<o
include ::Enumerable
end

Actions #4

Updated by trans (Thomas Sawyer) over 12 years ago

Ah, right I forgot about this... what do you call it? The "callback"?

It needs to be:

Enumerable.send(:extend_object, BasicObject.new)

but it worked.

@matz (Yukihiro Matsumoto) thanks that will work too --although with a little more meta-programming if the module was in a variable.

Thanks. Sorry for the noise. Should have put the question on ruby-talk instead... but there so little communication actually going on there these days.

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0