class Faraday::Middleware::Escher::Base

Public Class Methods

new(app,options={}) click to toggle source
Calls superclass method
# File lib/faraday/middleware/escher/base.rb, line 4
def initialize(app,options={})

  super(app)
  @host = options[:host]

  @escher_options = options[:options] || {}
  @escher_credential_scope = options[:credential_scope] || raise(ArgumentError,'missing escher credential scope!')

end