Devise 3.0 works with Rails 3.2 onwards. You can add it to your Gemfile with: gem 'devise' Run the bundle command from terminal to install it. bundle After you install Devise and add it to your Gemfile, you need to run the generator: rails generate devise:install The generator will...