Skip to content
Snippets Groups Projects
Commit 857dd075 authored by Caleb Thompson's avatar Caleb Thompson
Browse files

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.
parent b4285ae4
No related branches found
No related tags found
No related merge requests found
......@@ -11,18 +11,22 @@ class Ability
# can :read, :all
# end
#
# The first argument to `can` is the action you are giving the user permission to do.
# If you pass :manage it will apply to every action. Other common actions here are
# :read, :create, :update and :destroy.
# The first argument to `can` is the action you are giving the user
# permission to do.
# 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
# :all it will apply to every resource. Otherwise pass a Ruby class of the resource.
# The second argument is the resource the user can perform the action on.
# 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.
#
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment