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 272029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:15:13+00:00 2026-05-12T00:15:13+00:00

I need to define the constant in the module that use the method from

  • 0

I need to define the constant in the module that use the method from the class that includes this module:

module B 
  def self.included(base)
    class << base
  CONST = self.find
    end
  end
end 

class A
  def self.find
    "AAA"
  end
  include B 
end

puts A::CONST

But the compiler gives the error on the 4th line.

Is there any other way to define the constant?

  • 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-12T00:15:13+00:00Added an answer on May 12, 2026 at 12:15 am

    The more idiomatic way to achieve this in Ruby is:

    module B 
      def self.included(klass)
        klass.class_eval <<-ruby_eval
          CONST = find
        ruby_eval
    
        # note that the block form of class_eval won't work
        # because you can't assign a constant inside a method
      end
    end
    
    class A
      def self.find
        "AAA"
      end
      include B 
    end
    
    puts A::CONST
    

    What you were doing (class << base) actually puts you into the context of A’s metaclass, not A itself. The find method is on A itself, not its metaclass. The thing to keep in mind is that classes are themselves objects, and so have their own metaclasses.

    To try to make it clearer:

    class Human
      def parent
        # this method is on the Human class and available
        # to all instances of Human.
      end
    
      class << self
        def build
          # this method is on the Human metaclass, and
          # available to its instance, Human itself.
        end
    
        # the "self" here is Human's metaclass, so build
        # cannot be called.
      end
    
      def self.build
        # exactly the same as the above
      end
    
      build # the "self" here is Human itself, so build can
            # be called
    end
    

    Not sure if that helps, but if you don’t understand it, you can still use the class_eval idiom above.

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

Sidebar

Ask A Question

Stats

  • Questions 123k
  • Answers 123k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer One way would be to fetch the JAD file using… May 12, 2026 at 1:09 am
  • Editorial Team
    Editorial Team added an answer I'd recommend a bit different solution: Use Help Server to… May 12, 2026 at 1:09 am
  • Editorial Team
    Editorial Team added an answer This might not be the right approach. You should include… May 12, 2026 at 1:09 am

Related Questions

I have a few of my own constants in symfony, and I need to
I have a C project where all code is organized in *.c / *.h
Can anyone find a constant in the .NET framework that defines the number of
From what I understand, #define x y and const int x = y; should
I've been extremely unsuccessful in compiling Botan as a static library in Visual C++.

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.