summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-09-03 12:40:12 +0200
committerAzul <azul@leap.se>2012-09-03 12:40:12 +0200
commitc52eed9d8c4bdcc767bd7eec7c0b073250ae948f (patch)
treef1231b8d15656aea1c9f8b09de23febfda551442
parent10714081c8fbd2e8729950bbb7cee1b76b5a2646 (diff)
moved CouchChanges and CouchStream into their own files
-rw-r--r--lib/couch_changes.rb17
-rw-r--r--lib/couch_stream.rb20
-rw-r--r--test.rb42
3 files changed, 40 insertions, 39 deletions
diff --git a/lib/couch_changes.rb b/lib/couch_changes.rb
new file mode 100644
index 0000000..59209a4
--- /dev/null
+++ b/lib/couch_changes.rb
@@ -0,0 +1,17 @@
+class CouchChanges
+ def initialize(stream)
+ @stream = stream
+ end
+
+ def last_seq
+ @stream.get "_changes", :limit => 1, :descending => true do |hash|
+ return hash[:last_seq]
+ end
+ end
+
+ def follow
+ @stream.get "_changes", :feed => :continuous, :since => last_seq do |hash|
+ yield(hash)
+ end
+ end
+end
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
diff --git a/test.rb b/test.rb
index 9ab73fc..c19db2f 100644
--- a/test.rb
+++ b/test.rb
@@ -1,46 +1,10 @@
#!/usr/bin/ruby
require 'rubygems'
-require "yajl/http_stream"
+require 'yajl/http_stream'
+require 'lib/couch_stream'
+require 'lib/couch_changes'
-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
-
-class CouchChanges
- def initialize(stream)
- @stream = stream
- end
-
- def last_seq
- @stream.get "_changes", :limit => 1, :descending => true do |hash|
- return hash[:last_seq]
- end
- end
-
- def follow
- @stream.get "_changes", :feed => :continuous, :since => last_seq do |hash|
- yield(hash)
- end
- end
-end
def main
# TODO: read the connection from a config