From 6a59e856aef02b7d0c8a5ab6ffa71937f8f11ec8 Mon Sep 17 00:00:00 2001 From: "James A. Rosen" Date: Sat, 12 Jun 2010 22:56:41 -0400 Subject: [PATCH] changed omniauth-openid to omniauth/openid and likewise for -basic in OpenID README --- oa-openid/README.rdoc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/oa-openid/README.rdoc b/oa-openid/README.rdoc index 8c3c65d..0327f0a 100644 --- a/oa-openid/README.rdoc +++ b/oa-openid/README.rdoc @@ -27,13 +27,11 @@ Then simply direct users to '/auth/open_id' to prompt them for their OpenID iden If OpenID is one of several authentication strategies, use the OmniAuth Builder: - require 'omniauth-openid' - require 'omniauth-basic' + require 'omniauth/openid' + require 'omniauth/basic' # for Campfire require 'openid/store/filesystem' use OmniAuth::Builder do provider :open_id, OpenID::Store::Filesystem.new('/tmp') provider :campfire end - -