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.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/couch_stream.rb b/lib/couch_stream.rb
index bed296a..081688a 100644
--- a/lib/couch_stream.rb
+++ b/lib/couch_stream.rb
@@ -1,7 +1,6 @@
class CouchStream
- def initialize(server, db)
- @server = server
- @db = db
+ def initialize(config)
+ @config = config
end
def get(path, options)
@@ -11,11 +10,11 @@ class CouchStream
yield(hash)
end
end
-
+
protected
def url_for(path, options = {})
- url = @server + @db + '/' + path
+ url = [@config.server, @config.database, path].join('/')
url += '?' if options.any?
url += options.map {|k,v| "#{k}=#{v}"}.join('&')
end