Method: Spree::TestingSupport::AuthorizationHelpers::CustomAbility#build_ability
- Defined in:
- lib/spree/testing_support/authorization_helpers.rb
permalink #build_ability(&block) ⇒ Object
[View source]
9 10 11 12 13 14 15 |
# File 'lib/spree/testing_support/authorization_helpers.rb', line 9 def build_ability(&block) block ||= proc{ |_u| can :manage, :all } Class.new do include CanCan::Ability define_method(:initialize, block) end end |