Tagged Questions
0
votes
2answers
197 views
Ruby - How to remove a setter on an object
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 ...