How do I add a class instance variable, the data for it and a attr_reader at runtime?
class Module
def additional_data member, data
self.class.send(:define_method, member) {
p "Added method #{member} to #{name}"
}
end
end
For example, given this class
class Test
additional_data :status, 55
end
So that now I can call:
p Test.status # => prints 55
How about this?
It's pretty self-explanatory, but let me know if you have any questions.