Not found
The exact documentation you were looking for could not be found. Here is the best guess.
store( key, val )
public
Stores value in database with key as the index. value is converted to YAML before being stored.
Returns value
Show source
def store( key, val )
super( key, val.to_yaml )
val
end