views:

59

answers:

1

I'm following the Railscasts tutorial on using OpenID with AuthLogic.

This command:

$ script/plugin install git://github.com/rails/open_id_authentication.git

installs the plugin, but I don't see any OpenID Rake tasks (rake -T). In particular, I can no longer run the task:

$ rake open_id_authentication:db:create

With previous applications, the Rake tasks were installed without a problem, so what's changed with the plugin? Which version of the plugin do I need to get the behavior I'm looking for?

Using Rails 2.3.5.

+1  A: 

Looks like the task has been taken out (unnecessary?). This bug report (link now broken but less than one hour ago worked) outlines the problem, but doesn't seem to give a definite answer of what's going on.

Rich Apodaca