Refold generated Ability comments at 80 characters

A lot of people still fold their code at 80 characters, so it is
nice to have generated code consider this.
This commit is contained in:
Caleb Thompson 2012-08-01 17:44:21 -03:00
parent b4285ae43c
commit 857dd075c5

View File

@ -11,18 +11,22 @@ class Ability
# can :read, :all # can :read, :all
# end # end
# #
# The first argument to `can` is the action you are giving the user permission to do. # The first argument to `can` is the action you are giving the user
# If you pass :manage it will apply to every action. Other common actions here are # permission to do.
# :read, :create, :update and :destroy. # If you pass :manage it will apply to every action. Other common actions
# here are :read, :create, :update and :destroy.
# #
# The second argument is the resource the user can perform the action on. If you pass # The second argument is the resource the user can perform the action on.
# :all it will apply to every resource. Otherwise pass a Ruby class of the resource. # If you pass :all it will apply to every resource. Otherwise pass a Ruby
# class of the resource.
# #
# The third argument is an optional hash of conditions to further filter the objects. # The third argument is an optional hash of conditions to further filter the
# objects.
# For example, here the user can only update published articles. # For example, here the user can only update published articles.
# #
# can :update, Article, :published => true # can :update, Article, :published => true
# #
# See the wiki for details: https://github.com/ryanb/cancan/wiki/Defining-Abilities # See the wiki for details:
# https://github.com/ryanb/cancan/wiki/Defining-Abilities
end end
end end