class Songkick::Transport::Base::BasicAuthDecorator

Public Instance Methods

do_verb(verb, path, params = {}, headers = {}, timeout = nil) click to toggle source
# File lib/songkick/transport/base.rb, line 176
def do_verb(verb, path, params = {}, headers = {}, timeout = nil)
  auth_headers = Authentication.basic_auth_headers(credentials)
  client.do_verb(verb, path, params, auth_headers.merge(headers), timeout)
end
method_missing(*args, &block) click to toggle source
# File lib/songkick/transport/base.rb, line 181
def method_missing(*args, &block)
  client.__send__(*args, &block)
end