Sha256: 1bb27d54068ab95ec923521398af9d46446fd317200752f2011d2a3bfa4cc745
Contents?: true
Size: 251 Bytes
Versions: 16
Compression:
Stored size: 251 Bytes
Contents
module Geocoder class ConfigurationHash < Hash def method_missing(meth, *args, &block) has_key?(meth) ? self[meth] : super end def respond_to_missing?(meth, include_private = false) has_key?(meth) || super end end end
Version data entries
16 entries across 16 versions & 1 rubygems