summaryrefslogtreecommitdiff
path: root/test.rb
blob: 1363a8c87841526c9f4a68fa86a44ec8238b5283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/ruby

require 'rubygems'
require "yajl/http_stream"

def main
  url = "http://localhost:5984/"
  db = "leap_certs"
  feed_type = "continuous"
  since = "0"
  queue = "changes"
  
  Yajl::HttpStream.get("#{url}#{db}/_changes?feed=#{feed_type}&since=#{since}", :symbolize_keys => true) do |hash|
    if hash[:id]
      p hash
    end
  end
end

main