I\'m trying to use user_signed_in? to add a login area to my rails 3 application using devise 1.1.3 and I get a NoMethodErrorin Rules#index
<% if user_sig
You seem to be missing the call to devise :database_authenticatable in your User model.
devise :database_authenticatable
User
Also, a good way to get started with devise is to look at the excellent RailsCasts by Ryan Bates : Introducing Devise.