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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:36:51+00:00 2026-06-01T07:36:51+00:00

I am newish to Ruby and I am trying to write a method to

  • 0

I am newish to Ruby and I am trying to write a method to dynamically add methods to n existing ruby class, here is what I have so far:

class Person
end

def attr_addr (target, attr)
    target.send :attr_accessor, attr
end

bob = Person.new

attr_addr(Person,"name")

bob.name = "bob"

But I get:

private method `name=' for ....

What am I doing wrong here? – am I using the wrong approach entirely ;-)?

  • 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-01T07:36:52+00:00Added an answer on June 1, 2026 at 7:36 am

    Your original code works for me. Anyway, here’s another way to write it:

    def attr_addr(target, attr)
      target.instance_eval "attr_accessor :#{attr}"
    end
    

    Here it is in action in an IRB session:

    >> bob = Person.new
    => #<Person:0x00000000df8798>
    >> bob.name = "bob"
    NoMethodError: undefined method `name=' for #<Person:0x00000000df8798>
            from (irb):6
            from /home/michi/.rbenv/versions/1.9.3-p0/bin/irb:12:in `<main>'
    >> attr_addr(Person, "name")
    => nil
    >> bob.name = "bob"
    => "bob"
    >> bob
    => #<Person:0x00000000df8798 @name="bob">
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Newish to mysql DBs here. I have a table of USERS and a table
I'm newish to Python (and stackoverflow)...bear with me! I have a dictionary that looks
I'm newish to the python ecosystem, and have a question about module editing. I
Newish to mysql. I have a query and it is not showing the value
Probably a simple answer that's mock or stub related but I'm newish and trying
I am trying to write an MVC webpage that has two drop down lists.
I'm trying to use the new(ish) AS3 global error handling class. I am trying
I'm new here and a fairly newbish developer overall. I have looked online for
I'm newish to rails, and I started with rails 3 and ruby 1.8.7 I'm
Newish C++ programmer here. I am creating a QT4 application and it's gotten large

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.