⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Ruby master
All Projects
Ruby
»
Ruby master
Overview
Activity
Roadmap
Issues
Repository
Like
Download (214 Bytes)
Bug #4307
ยป issue.rb
adrianomitre (Adriano Mitre)
, 01/24/2011 04:14 AM
module
Foo
;
def
foo
;
42
;
end
;
end
Array
.
class_eval
{
include
Foo
}
[
1
].
foo
Array
.
class_eval
{
Foo
.
instance_methods
.
each
{
|
m
|
self
.
class_eval
{
undef_method
m
}
}
}
[
1
].
foo
Array
.
class_eval
{
include
Foo
}
[
1
].
foo
(1-1/1)
Loading...