If I have a class with an attr_accessor, it defaults to creating an instance variable along with the corresponding getters and setters. But instead of creating an instance variable, is there a way to get it to create a class variable or a class instance variable instead?
|
2
|
|
||
|
|
|
|
Work your way through _why's seeing metaclasses clearly [mirror] - it's very helpful when trying to understand the way ruby's classes and objects work |
||||||
|
|
|
In Rails (or anywhere you require 'activesupport') you can use
to get true class variable accessors. The class instance variables that others have pointed out are usually more useful. The APIdock cattr_accessor page has some helpful discussion clarifying when you would want one not the other, plus the source to the cattr_accessor/reader/writer functions. |
||
|
|
|
|
Like this:
You can look at this as opening the metaclass of the class (of which the class itself is an instance) and adding an attribute to it. attr_accessor is a method of class Class, it add's two methods to the class, one which reads the instance variable, and other that set's it. Here's a possible implementation:
Completely untested class atribute accessor:
|
||||||
|
