couchrest 2.0.0.rc1 → 2.0.0.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/history.txt +6 -1
- data/lib/couchrest/connection.rb +1 -0
- data/spec/couchrest/connection_spec.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e11ffbb5106aa947148918e8df2dca90b71e7760
|
4
|
+
data.tar.gz: 5cb76649c5af7b0b7be771a1238b9d4d2a9c4748
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82bd9c1a4249d4ada2e838462b8bd1a56b02b709262aa3906da17bba1e2e0f142a4daebfe7ae9dff11f85782bbd8dac4cfac0953a72204c40b931993e3fcd312
|
7
|
+
data.tar.gz: cc004a48286023ccf7c68ba48f4c5380729391c62ef160860b94a262295b43b8d400ccc92b983d6f734bb5dfc71c86fbff142a947748c734945cf6a0b21f046c
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.0.
|
1
|
+
2.0.0.rc2
|
data/history.txt
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
-
== 2.0.0.
|
1
|
+
== 2.0.0.rc2
|
2
|
+
|
3
|
+
* Minor changes
|
4
|
+
* Forcing HTTP basic connections when user+pass provided to avoid 401 (@samlown via @cloudant)
|
5
|
+
|
6
|
+
== 2.0.0.rc1 - 2015-07-13
|
2
7
|
|
3
8
|
* Major Changes
|
4
9
|
* Refactoring to support persisitent HTTP connections with HTTPClient gem (@samlown)
|
data/lib/couchrest/connection.rb
CHANGED
@@ -206,6 +206,7 @@ describe CouchRest::Connection do
|
|
206
206
|
stub_request(:get, "http://user:pass@mock/db/test")
|
207
207
|
.to_return(:body => doc.to_json)
|
208
208
|
conn = CouchRest::Connection.new(URI "http://user:pass@mock")
|
209
|
+
expect(conn.http.www_auth.basic_auth.force_auth).to be_true
|
209
210
|
conn.get("db/test")
|
210
211
|
end
|
211
212
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: couchrest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.
|
4
|
+
version: 2.0.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- J. Chris Anderson
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2015-
|
15
|
+
date: 2015-08-18 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: httpclient
|