module LucidPolicy class Helper < BasicObject attr_reader :result def initialize @result = :deny end def allow @result = :allow nil end def deny nil end def current_user Isomorfeus.current_user end end end