module Geocoder::Model::MongoBase

def geocoder_initialized?

def geocoder_initialized?
  begin
    included_modules.include? Geocoder::Store.const_get(geocoder_module_name)
  rescue NameError
    false
  end
end