Skip to content

Commit a3bee1b

Browse files
committed
Use Bundler in stand-alone mode to install required Ruby Gems
1 parent c5dd7f3 commit a3bee1b

File tree

18 files changed

+565
-0
lines changed

18 files changed

+565
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.bundle/

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org/'
2+
gem 'net-http-digest_auth'

Gemfile.lock

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
net-http-digest_auth (1.4)
5+
6+
PLATFORMS
7+
x64-mingw32
8+
9+
DEPENDENCIES
10+
net-http-digest_auth

bundle/bundler/setup.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
require 'rbconfig'
2+
# ruby 1.8.7 doesn't define RUBY_ENGINE
3+
ruby_engine = defined?(RUBY_ENGINE) ? RUBY_ENGINE : 'ruby'
4+
ruby_version = RbConfig::CONFIG["ruby_version"]
5+
path = File.expand_path('..', __FILE__)
6+
$:.unshift File.expand_path("#{path}/../#{ruby_engine}/#{ruby_version}/gems/net-http-digest_auth-1.4/lib")
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
13 KB
Binary file not shown.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# -*- ruby -*-
2+
3+
require 'autotest/restart'
4+
5+
Autotest.add_hook :initialize do |at|
6+
at.testlib = 'minitest/unit'
7+
end
8+

bundle/ruby/2.0.0/gems/net-http-digest_auth-1.4/.gemtest

Whitespace-only changes.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
=== 1.4 / 2013-07-23
2+
3+
* Minor enhancements
4+
* Relaxed parser to accept quoted algorithm to work with Linksys SPA922.
5+
Pull request #8 by Ismail Hanli, Issue #5 by bearded
6+
7+
=== 1.3 / 2012-03-28
8+
9+
* Minor enhancements
10+
* The cnonce is regenerated for every request to improve security.
11+
* SecureRandom is used to generate the cnonce instead of Kernel#rand
12+
* Bug fix
13+
* cnonce and nonce-count are no longer sent when qop was not provided per
14+
RFC 2617 section 3.2.2.
15+
16+
=== 1.2.1 / 2012-05-18
17+
18+
* Bug fix
19+
* Fixed -sess authentication. This also fixes pull request #4 by joe81
20+
21+
=== 1.2 / 2011-11-22
22+
23+
* Minor enhancement
24+
* Now thread safe. Issue #2 by chrisochs.
25+
26+
=== 1.1.1 / 2011-04-03
27+
28+
* Bug fix
29+
* Fix syntax error on ruby 1.8
30+
31+
=== 1.1 / 2011-03-29
32+
33+
* Minor enhancements
34+
* Add support for SHA1, SHA2, SHA256, SHA384, SHA512, RMD160 algorithms
35+
* Bug fixes
36+
* Support opaque per RFC 2617 3.2.1
37+
* Support MD5-sess per RFC 2617 3.2.2.2
38+
* Support unspecified qop for RFC 2069 compatibility per RFC 2617 3.2.2.1
39+
40+
=== 1.0 / 2010-09-10
41+
42+
* Major enhancements
43+
* Birthday!
44+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.autotest
2+
History.txt
3+
Manifest.txt
4+
README.txt
5+
Rakefile
6+
lib/net/http/digest_auth.rb
7+
sample/auth_server.rb
8+
sample/net_http_example.rb
9+
test/test_net_http_digest_auth.rb

0 commit comments

Comments
 (0)