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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:42:03+00:00 2026-06-13T18:42:03+00:00

I want to be able to write a code like below: MyModule::MyClass.configure do |item|

  • 0

I want to be able to write a code like below:

MyModule::MyClass.configure do |item|
  item.var1 = 'dsads'
  item.var2 = 'dsadsa'
  item.var3 = 'fdsfdsfd'
end

Well, I define a module and a class within it:

module MyModule
 class MyClass
 end
end

…and what should I do further?

  • 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-13T18:42:04+00:00Added an answer on June 13, 2026 at 6:42 pm

    If you want to do configuration, then I would recommend that you use a Singleton class, like this:

    require 'singleton'
    module MyModule
     class MyClass
       include Singleton
     end
    end
    

    Then you will need to define the configure method on this:

    require 'singleton'
    module MyModule
     class MyClass
       include Singleton
       def self.configure
         yield(self)
       end
     end
    end
    

    yield will evaluate the block within the context of the class, meaning that any methods called on the block object will be called on the class object.

    Then for each method you call inside the configure block, you will need a corresponding method definition inside the class. You can do this by defining the methods manually:

     class MyClass
       def self.var1=(value)
         @var1 = value
       end
    
       def self.var1
         @var1
       end 
     end
    

    Or, you can use attr_accessor:

     class MyClass
       class << self
         attr_accessor :var1
       end
     end
    

    To get the values back out, just do this:

     MyMoudle::MyClass.var1
    

    If you don’t want to use a singleton, then change the class represented MyClass to be a module instead.

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

Sidebar

Related Questions

I want to be able to write code like this: HWND hwnd = <the
I want to be able to write to an OutputStream of a HttpServletResponse even
Using Nunit, I want to be able to write a test fixture that will
Currently, I have: outByte.writeInt(0x49492a00); outByte.writeInt(0x08000000); But i want to be able to write all
I want my program to be able to write files in a sequential format,
I want to write a little program which is able to work with Google
Basically I want to write a script to be able to detect when the
I want to be able to convert a List<T> into a specific JSON table-like
I have code like: MyClass = { init: function(){ marker = 0; //I call
Background I am trying to write an application which works like described below. When

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.