couch-db 0.11.0 → 0.11.1
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/lib/couch.rb +6 -6
- data/lib/couch/db/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fbb34f2e691ddb9f10d9a2750263da533e30d3c0
|
|
4
|
+
data.tar.gz: 236e61f8a352207e84e6ba8d2941d6d3f9a225bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6137b21830233b0c118b036b0e8c1dbe5116582898de5bf9816b8b330ed26cc55b5f82d5ed1902afe1437528a317e1c25410c30022c8d1a9860f5ce1e71bfa9a
|
|
7
|
+
data.tar.gz: 2cefc48dc8690981ca9c5b67b3009fdb6cd9008a617c961d32b2698c07c09a27685494fa94fdfd98668aee83460b839c5e89a827e1014b71a2cef856d8772946
|
data/lib/couch.rb
CHANGED
|
@@ -308,10 +308,10 @@ module Couch
|
|
|
308
308
|
Request.new(Net::HTTP::Head.new(uri)).couch_url(@couch_url)
|
|
309
309
|
end
|
|
310
310
|
|
|
311
|
-
def get(uri
|
|
311
|
+
def get(uri)
|
|
312
312
|
Request.new(
|
|
313
313
|
Net::HTTP::Get.new(uri), nil,
|
|
314
|
-
@options
|
|
314
|
+
@options
|
|
315
315
|
).perform
|
|
316
316
|
end
|
|
317
317
|
|
|
@@ -319,9 +319,9 @@ module Couch
|
|
|
319
319
|
Request.new(Net::HTTP::Get.new(uri)).couch_url(@couch_url)
|
|
320
320
|
end
|
|
321
321
|
|
|
322
|
-
def put(uri, json
|
|
322
|
+
def put(uri, json)
|
|
323
323
|
Request.new(Net::HTTP::Put.new(uri), json,
|
|
324
|
-
@options
|
|
324
|
+
@options
|
|
325
325
|
).perform
|
|
326
326
|
end
|
|
327
327
|
|
|
@@ -329,9 +329,9 @@ module Couch
|
|
|
329
329
|
Request.new(Net::HTTP::Put.new(uri)).couch_url(@couch_url)
|
|
330
330
|
end
|
|
331
331
|
|
|
332
|
-
def post(uri, json
|
|
332
|
+
def post(uri, json)
|
|
333
333
|
Request.new(Net::HTTP::Post.new(uri), json,
|
|
334
|
-
@options
|
|
334
|
+
@options
|
|
335
335
|
).perform
|
|
336
336
|
end
|
|
337
337
|
|
data/lib/couch/db/version.rb
CHANGED