No release in over 3 years
Low commit activity in last 3 years
Faraday extension to enable digest auth
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.1
~> 12.3.3
~> 3
= 0.82.0
~> 3.8.3

Runtime

 Project Readme

Faraday::DigestAuth

Gem Version Coverage Status Code Climate

Installation

Add this line to your application's Gemfile:

gem 'faraday-digestauth'

And then execute:

$ bundle install

Usage

require 'faraday'
require 'faraday/digestauth'

conn = Faraday.new(url: HOSTNAME) do |f|
  f.request :digest, USERNAME, PASSWORD
  f.adapter Faraday.default_adapter
end

conn.get 'resource'

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

History

This gem was extracted from Hyperclient by @oriolgual and turned into a gem by @bhaberer.

Note: I'm not actively maintaining or managing this gem any longer, as I no longer work on projects using digest auth, if you would like to help maintain this gem please let me know.

License

MIT License, see LICENSE for details.