This gem started as a direct copy of a gist belonging to @kapkaev
It is located at https://gist.github.com/kapkaev/5088751
I merely gemmed it up so that I could use it in multiple places.
Add this line to your application's Gemfile:
gem 'faraday-digestauth'
And then execute:
$ bundle
Or install it yourself as:
$ gem install faraday-digestauth
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'
git checkout -b my-new-feature)git commit -am 'Add some feature')git push origin my-new-feature)Ruby
100.0%
This gem started as a direct copy of a gist belonging to @kapkaev
It is located at https://gist.github.com/kapkaev/5088751
I merely gemmed it up so that I could use it in multiple places.
Add this line to your application's Gemfile:
gem 'faraday-digestauth'
And then execute:
$ bundle
Or install it yourself as:
$ gem install faraday-digestauth
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'
git checkout -b my-new-feature)git commit -am 'Add some feature')git push origin my-new-feature)Ruby
100.0%