module OmniAuth::Whichsignupapi::AuthHashDelegator

Public Instance Methods

delegate_to(delegate) click to toggle source
# File lib/omniauth/whichsignupapi/auth_hash_delegator.rb, line 4
def delegate_to(delegate)
  @delegate = delegate
end
extra() click to toggle source
Calls superclass method
# File lib/omniauth/whichsignupapi/auth_hash_delegator.rb, line 16
def extra
  @delegate ? @delegate.extra : super
end
info() click to toggle source
Calls superclass method
# File lib/omniauth/whichsignupapi/auth_hash_delegator.rb, line 12
def info
  @delegate ? @delegate.info : super
end
uid() click to toggle source
Calls superclass method
# File lib/omniauth/whichsignupapi/auth_hash_delegator.rb, line 8
def uid
  @delegate ? @delegate.uid : super
end