Flowdock
included_modules() public

Returns the list of modules included in mod.

   module Mixin
   end

   module Outer
     include Mixin
   end

   Mixin.included_modules   #=> []
   Outer.included_modules   #=> [Mixin]
Show source
Register or log in to add new notes.