module Geocoder

def self.search(query, options = {})


Search for information about an address or a set of coordinates.
#
def self.search(query, options = {})
  query = Geocoder::Query.new(query, options) unless query.is_a?(Geocoder::Query)
  query.blank? ? [] : query.execute
end