= private = protected
store( key, val )
Stores value in database with key as the index. value is converted to YAML before being stored.
Returns value
# File lib/yaml/dbm.rb, line 177 def store( key, val ) super( key, val.to_yaml ) val end