sovaa 0.0.3 → 0.0.4

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.
@@ -17,8 +17,6 @@ require 'sovaa/http'
17
17
  require 'sovaa/server'
18
18
  require 'sovaa/database'
19
19
 
20
- Sovaa::HTTP.adapter = :net_http
21
-
22
20
  # = CouchDB, close to the metal
23
21
  module Sovaa
24
22
  VERSION = '1.0.1'
@@ -2,7 +2,8 @@ module Sovaa
2
2
  class JsonResponse < Hash
3
3
  attr_reader :etag
4
4
  def initialize(json, etag)
5
- super(Yajl::Parser.parse(json))
5
+ super()
6
+ self.merge!(Yajl::Parser.parse(json))
6
7
  @etag = etag
7
8
  end
8
9
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "sovaa"
3
- s.version = "0.0.3"
3
+ s.version = "0.0.4"
4
4
  s.date = "2011-03-19"
5
5
  s.summary = "CouchDB library"
6
6
  s.email = "jonathan.stott@gmail.com"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: sovaa
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.3
5
+ version: 0.0.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jonathan Stott