Sha256: d122a616d1befe863885948239af7e1bc6a3f84e7d833ac5b30bd0b3915e7420
Contents?: true
Size: 288 Bytes
Versions: 22
Compression:
Stored size: 288 Bytes
Contents
module CanTango class Ability class Scope attr_accessor :ability def initialize ability @ability = ability end def can? *args ability.can? *args end def cannot? *args ability.cannot? *args end end end end
Version data entries
22 entries across 22 versions & 1 rubygems