module Geocoder

def self.configure(&block)


Provides convenient access to the Configuration singleton.
#
def self.configure(&block)
  if block_given?
    block.call(Configuration.instance)
  else
    Configuration.instance
  end
end