update( hsh )
public
Updates the database with multiple values from the specified object. Takes
any object which implements the each_pair method, including Hash and DBM objects.
Returns self.
Show source
def update( hsh )
hsh.each_pair do |k,v|
self.store( k, v )
end
self
end