Skip to content

Commit

Permalink
Refold generated Ability comments at 80 characters
Browse files Browse the repository at this point in the history
A lot of people still fold their code at 80 characters, so it is
nice to have generated code consider this.
  • Loading branch information
calebhearth committed Aug 1, 2012
1 parent b4285ae commit 857dd07
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions lib/generators/cancan/ability/templates/ability.rb
Expand Up @@ -11,18 +11,22 @@ def initialize(user)
# 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 comments on commit 857dd07

Please sign in to comment.