Sha256: e6dc6e8996d50283556aad61bf82580af036490550767cc540a8f6edb404be5e
Contents?: true
Size: 943 Bytes
Versions: 64
Compression:
Stored size: 943 Bytes
Contents
# encoding: utf-8 module Github module Validations module Token TOKEN_REQUIRED = [ 'get /user', 'get /user/emails', 'get /user/followers', 'get /user/following', 'get /user/keys', 'get /user/repos', 'patch /user', 'post /user/emails', 'post /user/keys', 'post /user/repos' ] TOKEN_REQUIRED_REGEXP = [ /repos\/.*\/.*\/comments/, ] # Ensures that required authentication token is present before # request is sent. # def validates_token_for(method, path) return true unless TOKEN_REQUIRED.grep("#{method} #{path}").empty? token_required = false TOKEN_REQUIRED_REGEXP.each do |regex| if "#{method} #{path}" =~ regex token_required = true end end return token_required end end # Token end # Validations end # Github
Version data entries
64 entries across 64 versions & 3 rubygems