Given a class like this:

class B
    class << self
        attr_accessor :var
    end
end

Suppose I can't modify the original source code of class B. How might I go about removing the setter on the class variable var? I've tried using something like B.send("unset_method", "var="), but that doesn't work (nor does remove_method, or overwriting that method with a var= method that doesn't do anything). Any ideas?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 0 down vote accepted
class <<B ; remove_method :var= ; end
link|improve this answer
Awesome! I forgot about doing things like that! – Markus Orrelly Mar 22 '10 at 17:25
feedback

Try:

class B
  class << self
    undef var=
  end
end

You may want to use remove_method instead:

class B
  class << self
    remove_method :var=
  end
end

To see the differences, go to: http://www.nach-vorne.de/2008/2/28/undef_method-remove_method/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.