#443: included method in an included module don't get defined in the extended
object
-------------------------------------+--------------------------------------
 Reporter:  mattaimone...@…          |       Owner:  lsansone...@…        
     Type:  defect                   |      Status:  new                  
 Priority:  blocker                  |   Milestone:  MacRuby 0.5          
Component:  MacRuby                  |    Keywords:                       
-------------------------------------+--------------------------------------
 {{{
 module Y
   def y
     puts 'y'
   end
 end

 module X
   include Y
   def x
     puts 'x'
   end
 end

 o = Object.new
 o.extend X
 o.x
 o.y
 }}}

 Bug reported by Rich Kilmer which is the reason why HotCocoa #on_action
 doesn't work in b2

-- 
Ticket URL: <http://www.macruby.org/trac/ticket/443>
MacRuby <http://macruby.org/>

_______________________________________________
MacRuby-devel mailing list
MacRuby-devel@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel

Reply via email to