# File lib/tramp/attribute_methods.rb, line 50
    def read_attribute(name)
      if ma = self.class.model_attributes[name]
        ma.type_cast(@attributes[name])
      else
        @attributes[name]
      end
    end