module GoogleMaps::Services::HashDot

Public Instance Methods

method_missing(method, *opts) click to toggle source
Calls superclass method
# File lib/googlemaps/services/util.rb, line 10
def method_missing(method, *opts)
  m = method.to_s
  if self.has_key?(m)
    return self[m]
  elsif self.has_key?(m.to_sym)
    return self[m.to_sym]
  end
  super
end