class Hash

Public Instance Methods

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