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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T21:18:51+00:00 2026-06-18T21:18:51+00:00

I mean, I want to create a class method in my module that will

  • 0

I mean, I want to create a class method in my module that will be used by the class who includes the module. They are in separated files.

By far I have something like this:

module Base
  def self.all
    puts "All Users"
  end
end

class User
  include Base
end

But I’m getting: NoMethodError: undefined methodall’ for User:Class`

Can you please explain the problem and if what I’m doing is a bad practice or going against any principle?

  • 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-06-18T21:18:52+00:00Added an answer on June 18, 2026 at 9:18 pm

    You can extend the module in your class, your code should be like this:

    module Base
      def all
        puts "All Users"
      end
    end
    
    class User
      extend Base
    end
    

    When you do something like this:

    module MyModule
      def self.module_method
        puts "module!"
      end
    end
    

    You’re actually adding the method in the module itself, you could call the previous method like this:

    MyModule.module_method
    

    There is a way to just include the module and get the behaviour that you want, but I don’t think this could be considered the “way to go”. Look at the example:

    module Base
      def self.included(klass)
        def klass.all
          puts "all users"
        end
      end
    end
    
    class User
      include Base
    end
    

    But like I said, if you can go with the extend class method, it is a better suit.

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

Sidebar

Related Questions

I want to create an S4 class in R that will allow me to
If you have a method called set in a class and want to create
First I want to clearify that I mean by reverse engineering something like decompiling
What i mean is that i want to activate the mouse leave event only
what I mean by that is: I basically have a class that has too
I have a .NET class library that has a class with a static method.
I have a list that contains FrameworkElements and I want to create an extension
I want to write unit test for a class that contains linq to sql
I'm trying to create a class in java that pool objects. The class starts
I want to test my AccountController . The problem is that in Register method

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.