Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1067755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:11:58+00:00 2026-05-16T20:11:58+00:00

I want the following module to be included in a class I have: module

  • 0

I want the following module to be included in a class I have:

module InheritanceEnumerator  
  def self.included(klass)  
      klass.instance_eval do  
        instance_variable_set('@subclasses',[])  
        def self.subclasses  
          @subclasses  
        end  
        original_method = self.respond_to?(:inherited) ? self.public_method(:inherited) : nil  
        instance_variable_set('@original_inherited_method', original_method)  
        def self.inherited(subclass)  
          @original_inherited_method.call(subclass) if @original_inherited_method  
          @subclasses<<subclass  
        end  
      end  
   end  
end  

What I’m trying to achieve is that I want my parent class to have references to direct children. I also need any other previous “inherited” methods set on my class by other stuff to stay in place. What am I doing wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T20:11:58+00:00Added an answer on May 16, 2026 at 8:11 pm

    Your code works in this situation (for me):

    class C; include InheritanceEnumerator; end
    C.subclasses #=> []
    class C1 < C; end
    class C2 < C; end
    C.subclasses #=> [C1, C2]
    

    But fails in the following situation:

    class C11 < C1; end
    C1.subclasses => NoMethodError: undefined method `<<' for nil:NilClass
    

    This is because you are only initializing @subclasses when the module is included; but you are forgetting that subclasses of C also have access to the modules methods but do not explictly include it.

    You fix this by doing the following:

    def self.subclasses
        @subclasses ||= []
        @subclasses
    end
    
    def self.inherited(subclass)
        @original_inherited_method.call(subclass) if @original_inherited_method
    
        @subclasses ||= []
        @subclasses << subclass  
    end
    

    EDIT:

    Okay, in future, please state what your problem is more fully and provide the test code you are using; as this was an exercise in frustration.

    The following works fine with your code:

    class C
        def self.inherited(s)
            puts "inherited by #{s}!"
        end
    
        include InheritanceEnumerator
    end
    
    class D < C; end #=> "inherited by D!"
    C.subclasses #=> [D]
    

    Perhaps the reason it wasn’t working for you is that you included InheritanceEnumerator before you had defined the inherited method?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this code: class A def print puts CONSTANT end end module B
So I have the following function in my drupal module. I want to submit
I want the following functionality using php I have a csv file. Each file
I want to be able to have methods in a module that are not
I have a custom module and I want a field to upload a picture.
I want following layout in my app. A button at top, second botton at
In my email regex i want following output abc@abc.co.in I am writing down below
I want the following on the btn1.Click: if (btn1.Enabled == false) System.Media.SystemSounds.Beep.Play(); Is there
I want the following code to execute when the myString is having either of
i want the following functionality. input : this is test <b> bold text </b>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.