Pintasan Ruby ke Self.Call

      class << self
        # The longer/old way
        def call(policy)
          new.call(policy)
        end

        # newer and shorter way
        delegate :call, to: :new
      end
Mo Lucas