module ActiveEntity::Accessor

Public Instance Methods

attributes() click to toggle source
# File lib/active_entity/accessor.rb, line 17
def attributes
  Hash[defined_attributes.keys.map {|name| [name.to_s, public_send(name)] }]
end