Clarify readme for rails 2.3 users

This commit is contained in:
Nicholas Clark 2012-05-10 19:03:51 -04:00
parent b73bd062a8
commit 0bbe2e1802

View File

@ -31,6 +31,15 @@ User permissions are defined in an +Ability+ class. CanCan 1.5 includes a Rails
rails g cancan:ability
In Rails 2.3, just add a new class in `app/models/ability.rb` with the folowing contents:
class Ability
include CanCan::Ability
def initialize(user)
end
end
See {Defining Abilities}[https://github.com/ryanb/cancan/wiki/defining-abilities] for details.