summaryrefslogtreecommitdiff
path: root/lib/couch_stream.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/couch_stream.rb')
-rw-r--r--lib/couch_stream.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/couch_stream.rb b/lib/couch_stream.rb
new file mode 100644
index 0000000..e3f66cc
--- /dev/null
+++ b/lib/couch_stream.rb
@@ -0,0 +1,20 @@
+class CouchStream
+ def initialize(server, db)
+ @server = server
+ @db = db
+ end
+
+ def get(path, options)
+ url = url_for(path, options)
+ # puts url
+ Yajl::HttpStream.get(url, :symbolize_keys => true) do |hash|
+ yield(hash)
+ end
+ end
+
+ def url_for(path, options)
+ url = @server + @db + '/' + path
+ url += '?' if options.any?
+ url += options.map {|k,v| "#{k}=#{v}"}.join('&')
+ end
+end