class ActiveFedora::Fedora

def init_base_path

Call this to create a Container Resource to act as the base path for this connection
def init_base_path
  connection.head(root_resource_path)
  ActiveFedora::Base.logger.info "Attempted to init base path `#{root_resource_path}`, but it already exists" if ActiveFedora::Base.logger
  false
rescue Ldp::NotFound
  unless host.downcase.end_with?("/rest")
    ActiveFedora::Base.logger.warn "Fedora URL (#{host}) does not end with /rest. This could be a problem. Check your fedora.yml config"
  end
  connection.put(root_resource_path, BLANK).success?
end