Sha256: 48c8b76cada26af99a81dbc139219d61400b451e4e78a521ec2815201f783c52
Contents?: true
Size: 299 Bytes
Versions: 27
Compression:
Stored size: 299 Bytes
Contents
module Octokit module Authentication def authentication if login && password {:login => login, :password => password} else {} end end def authenticated? !authentication.empty? end def oauthed? !oauth_token.nil? end end end
Version data entries
27 entries across 27 versions & 1 rubygems