Sha256: 653798b607dd45841943627787f28da043099806e5651256657aa0dc50f43610
Contents?: true
Size: 420 Bytes
Versions: 81
Compression:
Stored size: 420 Bytes
Contents
module Rack module OAuth2 module Server module Abstract class Handler attr_accessor :authenticator, :request, :response def initialize(&authenticator) @authenticator = authenticator end def call(env) @authenticator.call(@request, @response) if @authenticator @response end end end end end end
Version data entries
81 entries across 81 versions & 2 rubygems