module OauthBwergemn::AuthMethods
Attributes
resource_credentials[RW]
resource_owner[RW]
resource_token[RW]
Public Instance Methods
protected_endpoint=(protected)
click to toggle source
rubocop:disable Lint/DuplicateMethods
# File lib/oauth_bwergemn/auth_methods/auth_methods.rb, line 8 def protected_endpoint=(protected) @protected_endpoint = protected end
protected_endpoint?()
click to toggle source
# File lib/oauth_bwergemn/auth_methods/auth_methods.rb, line 12 def protected_endpoint? @protected_endpoint || false end
resource_credentials=(credentials)
click to toggle source
# File lib/oauth_bwergemn/auth_methods/auth_methods.rb, line 32 def resource_credentials=(credentials) @_resource_credentials = credentials end
resource_owner=(resource)
click to toggle source
# File lib/oauth_bwergemn/auth_methods/auth_methods.rb, line 24 def resource_owner=(resource) @_resource_owner = resource end
resource_token=(token)
click to toggle source
# File lib/oauth_bwergemn/auth_methods/auth_methods.rb, line 20 def resource_token=(token) @_resource_token = token end