jchris-couchrest 0.12.5 → 0.12.6

Sign up to get free protection for your applications and to get access to all the features.
data/lib/couchrest.rb CHANGED
@@ -25,7 +25,7 @@ require 'couchrest/monkeypatches'
25
25
 
26
26
  # = CouchDB, close to the metal
27
27
  module CouchRest
28
- VERSION = '0.12.5'
28
+ VERSION = '0.12.6'
29
29
 
30
30
  autoload :Server, 'couchrest/core/server'
31
31
  autoload :Database, 'couchrest/core/database'
@@ -50,7 +50,7 @@ module CouchRest
50
50
  def slow_view funcs, params = {}
51
51
  keys = params.delete(:keys)
52
52
  funcs = funcs.merge({:keys => keys}) if keys
53
- url = CouchRest.paramify_url "#{@root}/_slow_view", params
53
+ url = CouchRest.paramify_url "#{@root}/_temp_view", params
54
54
  JSON.parse(RestClient.post(url, funcs.to_json, {"Content-Type" => 'application/json'}))
55
55
  end
56
56
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jchris-couchrest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.5
4
+ version: 0.12.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - J. Chris Anderson