Class: MDBM
Constant Summary
Constants included from MDBM_Version
Instance Method Summary collapse
Instance Method Details
#[](key) ⇒ Object
17 18 19 |
# File 'lib/mdbm.rb', line 17 def [](key) Marshal.load(super(key)) end |
#[]=(key, value) ⇒ Object
14 15 16 |
# File 'lib/mdbm.rb', line 14 def []=(key,value) super(key, Marshal.dump(value)) end |