Faustas - Programming, Projects, Psychology and Faust
If you try to use the authentication solution devise with Rails 3, you have to upgrade the version to 1.1.
First, add the dependency to your local Gemfile:
gem 'devise', "1.1.rc2"
Second, download and install the new version of devise:
gem install devise --version=1.1.rc2
Finally, run the generator:
rails generate devise:install
If the latter does not work, you can try:
bundle install
Additional information can be found at github devise.
Comments
Thanks for this article. I
By Anonymous on 13 Jul 2010 at about 16:02.Thanks for this article. I was searching for that solution.