# File lib/doorkeeper/config.rb, line 19
  def self.setup_orm_adapter
    @orm_adapter = "doorkeeper/orm/#{configuration.orm}".classify.constantize
  rescue NameError => e
    fail e, "ORM adapter not found (#{configuration.orm})", "[doorkeeper] ORM adapter not found (\#{configuration.orm}), or there was an error\ntrying to load it.\n\nYou probably need to add the related gem for this adapter to work with\ndoorkeeper.\n".squish
  end