module PDC::Request::TokenFetcher::Configuration

Constants

VALID_KEYS

Public Instance Methods

configure() { |self| ... } click to toggle source
# File lib/pdc/http/request/token_fetcher.rb, line 15
def configure
  yield self
end
options() click to toggle source
# File lib/pdc/http/request/token_fetcher.rb, line 11
def options
  Hash[*VALID_KEYS.map { |k| [k, send(k)] }.flatten]
end