class Hash

Public Instance Methods

method_missing(sym,*) click to toggle source
Calls superclass method
# File lib/basicjrpc/hash.rb, line 2
def method_missing(sym,*)
  fetch(sym){fetch(sym.to_s){super}}
end