class Hash

Public Instance Methods

method_missing(_method) click to toggle source
# File lib/elfcat/util.rb, line 16
def method_missing _method
  return self[_method].is_a?(Hash) ? self[_method][:data] : self[_method]
end