I want to be able to dynamically add to when there is no corresponding attribute in the database
attr_accessor
This overwrote the attributes I currently had:
def method_missing(method, arg)
self.class.attr_accessor.send(method) || super
end
I also tried loading the variables into the singleton class, but that gave me a 0 for 1 argument error.
That is you want?