module ActiveFedora::Model::ClassMethods

def attribute_get(name)

wrapper around instance_variable_get, returns current value of @name
def attribute_get(name)
  #instance_variable_get(properties[":#{name}"].instance_variable_name)
  instance_variable_get("@#{name}")
end