class Storable::Anonymous
Public Class Methods
new(from)
click to toggle source
# File lib/storable.rb, line 494 def initialize from @hash = from end
Public Instance Methods
[](key)
click to toggle source
# File lib/storable.rb, line 497 def [](key) @hash[meth.to_sym] end
method_missing(meth,*args)
click to toggle source
# File lib/storable.rb, line 500 def method_missing(meth,*args) @hash[meth.to_sym] end