riak-client 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/RELEASE_NOTES.md +32 -3
- data/erl_src/riak_kv_test_backend.beam +0 -0
- data/erl_src/riak_kv_test_backend.erl +255 -120
- data/erl_src/riak_search_test_backend.beam +0 -0
- data/erl_src/riak_search_test_backend.erl +3 -3
- data/lib/riak/client/excon_backend.rb +40 -7
- data/lib/riak/client/net_http_backend.rb +2 -3
- data/lib/riak/node/configuration.rb +6 -0
- data/lib/riak/node/console.rb +0 -7
- data/lib/riak/robject.rb +12 -10
- data/lib/riak/test_server.rb +7 -1
- data/lib/riak/version.rb +1 -1
- data/riak-client.gemspec +1 -1
- data/spec/integration/riak/http_backends_spec.rb +51 -0
- data/spec/integration/riak/node_spec.rb +16 -0
- data/spec/riak/excon_backend_spec.rb +18 -13
- data/spec/riak/node_spec.rb +1 -1
- data/spec/riak/robject_spec.rb +8 -0
- data/spec/support/unified_backend_examples.rb +28 -0
- data/spec/support/version_filter.rb +6 -3
- metadata +664 -5
Binary file
|
@@ -25,18 +25,18 @@
|
|
25
25
|
]).
|
26
26
|
|
27
27
|
-include_lib("riak_search/include/riak_search.hrl").
|
28
|
-
|
28
|
+
-define(T(P), list_to_atom("rs" ++ integer_to_list(P))).
|
29
29
|
-record(state, {partition, table}).
|
30
30
|
|
31
31
|
reset() ->
|
32
32
|
{ok, Ring} = riak_core_ring_manager:get_my_ring(),
|
33
|
-
[ ets:delete_all_objects(
|
33
|
+
[ catch ets:delete_all_objects(?T(P)) ||
|
34
34
|
P <- riak_core_ring:my_indices(Ring) ],
|
35
35
|
riak_search_config:clear(),
|
36
36
|
ok.
|
37
37
|
|
38
38
|
start(Partition, _Config) ->
|
39
|
-
Table = ets:new(
|
39
|
+
Table = ets:new(?T(Partition),
|
40
40
|
[named_table, public, ordered_set]),
|
41
41
|
{ok, #state{partition=Partition, table=Table}}.
|
42
42
|
|
@@ -12,8 +12,9 @@ module Riak
|
|
12
12
|
begin
|
13
13
|
require 'excon'
|
14
14
|
Client::NETWORK_ERRORS << Excon::Errors::SocketError
|
15
|
+
Client::NETWORK_ERRORS << Excon::Errors::TimeoutError if defined? Excon::Errors::TimeoutError
|
15
16
|
Client::NETWORK_ERRORS.uniq!
|
16
|
-
|
17
|
+
minimum_version?("0.5.7") && handle_deprecations && patch_excon
|
17
18
|
rescue LoadError
|
18
19
|
false
|
19
20
|
end
|
@@ -34,6 +35,43 @@ module Riak
|
|
34
35
|
@@patched = true
|
35
36
|
end
|
36
37
|
|
38
|
+
# Defines instance methods that handle changes in the Excon API
|
39
|
+
# across different versions.
|
40
|
+
def self.handle_deprecations
|
41
|
+
# Define #make_request
|
42
|
+
if minimum_version?("0.10.2")
|
43
|
+
def make_request(params, block)
|
44
|
+
params[:response_block] = block if block
|
45
|
+
connection.request(params)
|
46
|
+
end
|
47
|
+
else
|
48
|
+
def make_request(params, block)
|
49
|
+
response = connection.request(params, &block)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# Define #configure_ssl
|
54
|
+
if minimum_version?("0.9.6")
|
55
|
+
def configure_ssl
|
56
|
+
Excon.defaults[:ssl_verify_peer] = (@node.ssl_options[:verify_mode].to_s === "peer")
|
57
|
+
Excon.defaults[:ssl_ca_path] = @node.ssl_options[:ca_path] if @node.ssl_options[:ca_path]
|
58
|
+
end
|
59
|
+
else
|
60
|
+
def configure_ssl
|
61
|
+
Excon.ssl_verify_peer = (@node.ssl_options[:verify_mode].to_s === "peer")
|
62
|
+
Excon.ssl_ca_path = @node.ssl_options[:ca_path] if @node.ssl_options[:ca_path]
|
63
|
+
end
|
64
|
+
end
|
65
|
+
private :make_request, :configure_ssl
|
66
|
+
end
|
67
|
+
|
68
|
+
# Returns true if the Excon library is at least the given
|
69
|
+
# version. This is used inside the backend to check how to
|
70
|
+
# provide certain request and configuration options.
|
71
|
+
def self.minimum_version?(version)
|
72
|
+
Gem::Version.new(Excon::VERSION) >= Gem::Version.new(version)
|
73
|
+
end
|
74
|
+
|
37
75
|
def teardown
|
38
76
|
connection.reset
|
39
77
|
end
|
@@ -54,7 +92,7 @@ module Riak
|
|
54
92
|
# Later versions of Excon pass multiple arguments to the block
|
55
93
|
block = lambda {|*args| yield args.first } if block_given?
|
56
94
|
|
57
|
-
response =
|
95
|
+
response = make_request(params, block)
|
58
96
|
response_headers.initialize_http_header(response.headers)
|
59
97
|
|
60
98
|
if valid_response?(expect, response.status)
|
@@ -71,11 +109,6 @@ module Riak
|
|
71
109
|
def connection
|
72
110
|
@connection ||= Excon::Connection.new(root_uri.to_s)
|
73
111
|
end
|
74
|
-
|
75
|
-
def configure_ssl
|
76
|
-
Excon.ssl_verify_peer = @node.ssl_options[:verify_mode].to_s === "peer"
|
77
|
-
Excon.ssl_ca_path = @node.ssl_options[:ca_path] if @node.ssl_options[:ca_path]
|
78
|
-
end
|
79
112
|
end
|
80
113
|
end
|
81
114
|
end
|
@@ -38,10 +38,9 @@ module Riak
|
|
38
38
|
configure_ssl(http) if @node.ssl_enabled?
|
39
39
|
|
40
40
|
request = Net::HTTP.const_get(method.to_s.capitalize).new(uri.request_uri, headers)
|
41
|
-
|
42
|
-
when String
|
41
|
+
if String === data
|
43
42
|
request.body = data
|
44
|
-
|
43
|
+
elsif data.respond_to?(:read)
|
45
44
|
case
|
46
45
|
when data.respond_to?(:stat) # IO#stat
|
47
46
|
request.content_length = data.stat.size
|
@@ -167,6 +167,7 @@ module Riak
|
|
167
167
|
def configure_logging
|
168
168
|
if env[:lager]
|
169
169
|
env[:lager][:handlers] = {
|
170
|
+
:lager_console_backend => :info,
|
170
171
|
:lager_file_backend => [
|
171
172
|
Tuple[(log+"error.log").expand_path.to_s, :error],
|
172
173
|
Tuple[(log+"console.log").expand_path.to_s, :info]
|
@@ -210,6 +211,11 @@ module Riak
|
|
210
211
|
def configure_paths
|
211
212
|
@source = Pathname.new(configuration[:source]).expand_path
|
212
213
|
@root = Pathname.new(configuration[:root]).expand_path
|
214
|
+
# Systems like Homebrew and Stow symlink the scripts into $PATH,
|
215
|
+
# but RUNNER_BASE_DIR is not relative to the symlink.
|
216
|
+
if (@source + control_script_name).symlink?
|
217
|
+
@source = (@source + control_script_name).realpath.parent
|
218
|
+
end
|
213
219
|
end
|
214
220
|
|
215
221
|
# Sets ports and interfaces for http, protocol buffers, and handoff.
|
data/lib/riak/node/console.rb
CHANGED
@@ -30,7 +30,6 @@ module Riak
|
|
30
30
|
def initialize(pipedir, nodename)
|
31
31
|
@nodename = nodename
|
32
32
|
@mutex = Mutex.new
|
33
|
-
@winch = Signal.trap("WINCH", &method(:handle_winch))
|
34
33
|
@prompt = /\(#{Regexp.escape(nodename)}\)\d+>\s*/
|
35
34
|
pipedir = Pathname(pipedir)
|
36
35
|
pipedir.children.each do |path|
|
@@ -108,12 +107,6 @@ module Riak
|
|
108
107
|
end
|
109
108
|
|
110
109
|
protected
|
111
|
-
# Handles the "window change" signal by faking it.
|
112
|
-
def handle_winch
|
113
|
-
debug "WINCHED!"
|
114
|
-
@w.print "\033_winsize=80,26\033\\"
|
115
|
-
Signal.trap("WINCH", &method(:handle_winch))
|
116
|
-
end
|
117
110
|
|
118
111
|
def debug(msg)
|
119
112
|
$stderr.puts msg if ENV["DEBUG_RIAK_CONSOLE"]
|
data/lib/riak/robject.rb
CHANGED
@@ -103,10 +103,17 @@ module Riak
|
|
103
103
|
def initialize(bucket, key=nil)
|
104
104
|
@bucket, @key = bucket, key
|
105
105
|
@links, @meta = Set.new, {}
|
106
|
-
@indexes =
|
106
|
+
@indexes = new_index_hash
|
107
107
|
yield self if block_given?
|
108
108
|
end
|
109
109
|
|
110
|
+
def indexes=(hash)
|
111
|
+
@indexes = hash.inject(new_index_hash) do |h, (k,v)|
|
112
|
+
h[k].merge([*v])
|
113
|
+
h
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
110
117
|
# Load object data from a map/reduce response item.
|
111
118
|
# This method is used by RObject::load_from_mapreduce to instantiate the necessary
|
112
119
|
# objects.
|
@@ -270,15 +277,6 @@ module Riak
|
|
270
277
|
Link.new(@bucket.name, @key, tag)
|
271
278
|
end
|
272
279
|
|
273
|
-
# Generates a URL representing the object according to the client, bucket and key.
|
274
|
-
# If the key is blank, the bucket URL will be returned (where the object will be
|
275
|
-
# submitted to when stored).
|
276
|
-
def url
|
277
|
-
segments = [ @bucket.client.http_paths[:prefix], escape(@bucket.name)]
|
278
|
-
segments << escape(@key) if @key
|
279
|
-
@bucket.client.http.path(*segments).to_s
|
280
|
-
end
|
281
|
-
|
282
280
|
alias :vector_clock :vclock
|
283
281
|
alias :vector_clock= :vclock=
|
284
282
|
|
@@ -312,5 +310,9 @@ module Riak
|
|
312
310
|
send("#{attribute}=", value)
|
313
311
|
end
|
314
312
|
end
|
313
|
+
|
314
|
+
def new_index_hash
|
315
|
+
Hash.new {|h,k| h[k] = Set.new }
|
316
|
+
end
|
315
317
|
end
|
316
318
|
end
|
data/lib/riak/test_server.rb
CHANGED
@@ -17,6 +17,9 @@ module Riak
|
|
17
17
|
configuration[:env] ||= {}
|
18
18
|
configuration[:env][:riak_kv] ||= {}
|
19
19
|
(configuration[:env][:riak_kv][:add_paths] ||= []) << File.expand_path("../../../erl_src", __FILE__)
|
20
|
+
configuration[:env][:riak_kv][:test] = true
|
21
|
+
configuration[:env][:memory_backend] ||={}
|
22
|
+
configuration[:env][:memory_backend][:test] = true
|
20
23
|
configuration[:env][:riak_search] ||= {}
|
21
24
|
configuration[:env][:riak_search][:search_backend] = :riak_search_test_backend
|
22
25
|
super configuration
|
@@ -75,8 +78,11 @@ module Riak
|
|
75
78
|
super
|
76
79
|
if version < "1.0.0"
|
77
80
|
env[:riak_kv][:storage_backend] = :riak_kv_test014_backend
|
78
|
-
|
81
|
+
elsif version =~ /^1\.[01]\.\d+$/ # 1.0 and 1.1 series
|
79
82
|
env[:riak_kv][:storage_backend] = :riak_kv_test_backend
|
83
|
+
else
|
84
|
+
# TODO: change this when 1.2+ is released, if it includes riak_kv#314
|
85
|
+
env[:riak_kv][:storage_backend] = :riak_kv_memory_backend
|
80
86
|
end
|
81
87
|
end
|
82
88
|
end
|
data/lib/riak/version.rb
CHANGED
data/riak-client.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
|
|
15
15
|
gem.add_development_dependency "rspec", "~>2.8.0"
|
16
16
|
gem.add_development_dependency "fakeweb", ">=1.2"
|
17
17
|
gem.add_development_dependency "rack", ">=1.0"
|
18
|
-
gem.add_development_dependency "excon", "
|
18
|
+
gem.add_development_dependency "excon", ">=0.6.1"
|
19
19
|
gem.add_development_dependency 'rake'
|
20
20
|
gem.add_runtime_dependency "i18n", ">=0.4.0"
|
21
21
|
gem.add_runtime_dependency "builder", ">= 2.1.2"
|
@@ -15,6 +15,57 @@ describe "HTTP" do
|
|
15
15
|
end
|
16
16
|
|
17
17
|
it_should_behave_like "Unified backend API"
|
18
|
+
|
19
|
+
describe "using Luwak", :version => "0.14.0".."1.0.3" do
|
20
|
+
let(:file) { File.open(__FILE__) }
|
21
|
+
let(:key) { "spec.rb" }
|
22
|
+
let(:string) { file.read }
|
23
|
+
|
24
|
+
def retry_400
|
25
|
+
begin
|
26
|
+
yield
|
27
|
+
rescue Riak::HTTPFailedRequest => e
|
28
|
+
# Riak 1.0.x (and possibly earlier) has a bug in
|
29
|
+
# mochiweb that will sometimes leave dangling 400
|
30
|
+
# responses on the wire between requests when the
|
31
|
+
# connection is left open. This will happen sometimes
|
32
|
+
# immediately after a store_file request.
|
33
|
+
if e.code == 400
|
34
|
+
retry
|
35
|
+
else
|
36
|
+
raise
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
it "should store an IO with a given key" do
|
42
|
+
@backend.store_file(key, 'text/plain', file)
|
43
|
+
stored_file = retry_400 { @backend.get_file(key) }
|
44
|
+
stored_file.content_type.should == 'text/plain'
|
45
|
+
stored_file.size.should == file.size
|
46
|
+
end
|
47
|
+
|
48
|
+
it "should store a String with a given key" do
|
49
|
+
@backend.store_file(key, 'text/plain', string)
|
50
|
+
stored_file = retry_400 { @backend.get_file(key) }
|
51
|
+
stored_file.content_type.should == 'text/plain'
|
52
|
+
stored_file.size.should == string.bytesize
|
53
|
+
end
|
54
|
+
|
55
|
+
it "should store an IO with a server-defined key" do
|
56
|
+
key = @backend.store_file('text/plain', file)
|
57
|
+
stored_file = retry_400 { @backend.get_file(key) }
|
58
|
+
stored_file.content_type.should == 'text/plain'
|
59
|
+
stored_file.size.should == file.size
|
60
|
+
end
|
61
|
+
|
62
|
+
it "should store a String with a server-defined key" do
|
63
|
+
key = @backend.store_file('text/plain', string)
|
64
|
+
stored_file = retry_400 { @backend.get_file(key) }
|
65
|
+
stored_file.content_type.should == 'text/plain'
|
66
|
+
stored_file.size.should == string.bytesize
|
67
|
+
end
|
68
|
+
end
|
18
69
|
end
|
19
70
|
end
|
20
71
|
end
|
@@ -20,6 +20,22 @@ describe Riak::Node, :test_server => false, :slow => true do
|
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
|
+
context "when the source control script is a symlink" do
|
24
|
+
let(:symdir) { Pathname.new(".symlinkriak") }
|
25
|
+
let(:sourcedir) { Pathname.new(test_server_config['source']) }
|
26
|
+
let(:control_script){ (sourcedir + 'riaksearch').exist? ? 'riaksearch' : 'riak' }
|
27
|
+
|
28
|
+
subject { described_class.new(:root => ".ripplenode", :source => symdir) }
|
29
|
+
|
30
|
+
before do
|
31
|
+
symdir.mkpath
|
32
|
+
(symdir + control_script).make_symlink(sourcedir + control_script)
|
33
|
+
end
|
34
|
+
after { symdir.rmtree }
|
35
|
+
|
36
|
+
its(:source){ should == sourcedir }
|
37
|
+
end
|
38
|
+
|
23
39
|
context "creation" do
|
24
40
|
before { subject.create }
|
25
41
|
after { subject.destroy }
|
@@ -46,19 +46,24 @@ else
|
|
46
46
|
end.should_not raise_error
|
47
47
|
end
|
48
48
|
|
49
|
-
it "should support IO objects as the request body" do
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
49
|
+
it "should support IO objects as the request body on PUT" do
|
50
|
+
File.open(File.expand_path("../../fixtures/cat.jpg", __FILE__), 'rb') do |file|
|
51
|
+
lambda do
|
52
|
+
setup_http_mock(:put, @backend.path("/riak/","foo").to_s, :body => "ok")
|
53
|
+
@backend.put(200, @backend.path("/riak/","foo"), file)
|
54
|
+
$mock_server.satisfied.should be_true
|
55
|
+
end.should_not raise_error
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
it "should support IO objects as the request body on POST" do
|
60
|
+
File.open(File.expand_path("../../fixtures/cat.jpg", __FILE__), 'rb') do |file|
|
61
|
+
lambda do
|
62
|
+
setup_http_mock(:post, @backend.path("/riak/","foo").to_s, :body => "ok")
|
63
|
+
@backend.post(200, @backend.path("/riak/", "foo"), file)
|
64
|
+
$mock_server.satisfied.should be_true
|
65
|
+
end.should_not raise_error
|
66
|
+
end
|
62
67
|
end
|
63
68
|
|
64
69
|
context "checking the Excon Gem version" do
|
data/spec/riak/node_spec.rb
CHANGED
data/spec/riak/robject_spec.rb
CHANGED
@@ -258,6 +258,14 @@ describe Riak::RObject do
|
|
258
258
|
@object.links.length.should == 1
|
259
259
|
end
|
260
260
|
|
261
|
+
it "should allow mass-overwriting indexes while preserving default behavior" do
|
262
|
+
@object = described_class.new(@bucket, 'foo')
|
263
|
+
@object.indexes = {"ts_int" => [12345], "foo_bin" => "bar"}
|
264
|
+
@object.indexes['ts_int'].should == Set.new([12345])
|
265
|
+
@object.indexes['foo_bin'].should == Set.new(["bar"])
|
266
|
+
@object.indexes['unset_bin'].should == Set.new
|
267
|
+
end
|
268
|
+
|
261
269
|
describe "when storing the object normally" do
|
262
270
|
before :each do
|
263
271
|
@backend = mock("Backend")
|
@@ -118,6 +118,13 @@ shared_examples_for "Unified backend API" do
|
|
118
118
|
end
|
119
119
|
end
|
120
120
|
|
121
|
+
it "should store an object with indexes", :version => "1.0.0" do
|
122
|
+
@robject.indexes['foo_bin'] << 'bar'
|
123
|
+
@backend.store_object(@robject, :returnbody => true)
|
124
|
+
@robject.indexes.should include('foo_bin')
|
125
|
+
@robject.indexes['foo_bin'].should include('bar')
|
126
|
+
end
|
127
|
+
|
121
128
|
after do
|
122
129
|
expect { @backend.fetch_object("test", "store") }.should_not raise_error(Riak::FailedRequest)
|
123
130
|
end
|
@@ -234,6 +241,27 @@ shared_examples_for "Unified backend API" do
|
|
234
241
|
end
|
235
242
|
end
|
236
243
|
|
244
|
+
# get_index
|
245
|
+
context "querying secondary indexes" do
|
246
|
+
before do
|
247
|
+
50.times do |i|
|
248
|
+
@client.bucket('test').new(i.to_s).tap do |obj|
|
249
|
+
obj.indexes["index_int"] << i
|
250
|
+
obj.data = [i]
|
251
|
+
@backend.store_object(obj)
|
252
|
+
end
|
253
|
+
end
|
254
|
+
end
|
255
|
+
|
256
|
+
it "should find keys for an equality query" do
|
257
|
+
@backend.get_index('test', 'index_int', 20).should == ["20"]
|
258
|
+
end
|
259
|
+
|
260
|
+
it "should find keys for a range query" do
|
261
|
+
@backend.get_index('test', 'index_int', 19..21).should =~ ["19","20", "21"]
|
262
|
+
end
|
263
|
+
end
|
264
|
+
|
237
265
|
# mapred
|
238
266
|
context "performing MapReduce" do
|
239
267
|
before do
|
@@ -1,14 +1,17 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
|
1
3
|
RSpec.configure do |config|
|
2
4
|
config.before(:each, :integration => true,
|
3
5
|
:version => lambda {|v| !!v },
|
4
6
|
:test_server => lambda {|ts| ts != false }) do
|
5
7
|
required = example.metadata[:version]
|
6
|
-
actual = test_server.version
|
8
|
+
actual = Gem::Version.new(test_server.version)
|
7
9
|
case required
|
8
10
|
when String
|
9
|
-
|
11
|
+
required = Gem::Requirement.create(">= #{required}")
|
10
12
|
when Range
|
11
|
-
|
13
|
+
required = Gem::Requirement.create([">= #{required.begin}", "<= #{required.end}"])
|
12
14
|
end
|
15
|
+
pending("SKIP: Tests feature for Riak #{required.to_s}, but testing against #{actual.to_s}") unless required.satisfied_by?(actual)
|
13
16
|
end
|
14
17
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: riak-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-04-
|
12
|
+
date: 2012-04-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -64,7 +64,7 @@ dependencies:
|
|
64
64
|
requirement: !ruby/object:Gem::Requirement
|
65
65
|
none: false
|
66
66
|
requirements:
|
67
|
-
- -
|
67
|
+
- - ! '>='
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: 0.6.1
|
70
70
|
type: :development
|
@@ -72,7 +72,7 @@ dependencies:
|
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
73
|
none: false
|
74
74
|
requirements:
|
75
|
-
- -
|
75
|
+
- - ! '>='
|
76
76
|
- !ruby/object:Gem::Version
|
77
77
|
version: 0.6.1
|
78
78
|
- !ruby/object:Gem::Dependency
|
@@ -173,68 +173,125 @@ files:
|
|
173
173
|
- Gemfile
|
174
174
|
- Guardfile
|
175
175
|
- lib/riak/bucket.rb
|
176
|
+
- lib/riak/bucket.rbc
|
176
177
|
- lib/riak/client/#http_backend.rb#
|
177
178
|
- lib/riak/client/beefcake/messages.rb
|
179
|
+
- lib/riak/client/beefcake/messages.rbc
|
178
180
|
- lib/riak/client/beefcake/object_methods.rb
|
181
|
+
- lib/riak/client/beefcake/object_methods.rbc
|
179
182
|
- lib/riak/client/beefcake_protobuffs_backend.rb
|
183
|
+
- lib/riak/client/beefcake_protobuffs_backend.rbc
|
180
184
|
- lib/riak/client/decaying.rb
|
185
|
+
- lib/riak/client/decaying.rbc
|
181
186
|
- lib/riak/client/excon_backend.rb
|
187
|
+
- lib/riak/client/excon_backend.rbc
|
182
188
|
- lib/riak/client/http_backend/configuration.rb
|
189
|
+
- lib/riak/client/http_backend/configuration.rbc
|
183
190
|
- lib/riak/client/http_backend/key_streamer.rb
|
191
|
+
- lib/riak/client/http_backend/key_streamer.rbc
|
184
192
|
- lib/riak/client/http_backend/object_methods.rb
|
193
|
+
- lib/riak/client/http_backend/object_methods.rbc
|
185
194
|
- lib/riak/client/http_backend/request_headers.rb
|
195
|
+
- lib/riak/client/http_backend/request_headers.rbc
|
186
196
|
- lib/riak/client/http_backend/transport_methods.rb
|
197
|
+
- lib/riak/client/http_backend/transport_methods.rbc
|
187
198
|
- lib/riak/client/http_backend.rb
|
199
|
+
- lib/riak/client/http_backend.rbc
|
188
200
|
- lib/riak/client/net_http_backend.rb
|
201
|
+
- lib/riak/client/net_http_backend.rbc
|
189
202
|
- lib/riak/client/node.rb
|
203
|
+
- lib/riak/client/node.rbc
|
190
204
|
- lib/riak/client/pool.rb
|
205
|
+
- lib/riak/client/pool.rbc
|
191
206
|
- lib/riak/client/protobuffs_backend.rb
|
207
|
+
- lib/riak/client/protobuffs_backend.rbc
|
192
208
|
- lib/riak/client/search.rb
|
209
|
+
- lib/riak/client/search.rbc
|
193
210
|
- lib/riak/client.rb
|
211
|
+
- lib/riak/client.rbc
|
194
212
|
- lib/riak/cluster.rb
|
213
|
+
- lib/riak/cluster.rbc
|
195
214
|
- lib/riak/core_ext/blank.rb
|
215
|
+
- lib/riak/core_ext/blank.rbc
|
196
216
|
- lib/riak/core_ext/deep_dup.rb
|
217
|
+
- lib/riak/core_ext/deep_dup.rbc
|
197
218
|
- lib/riak/core_ext/extract_options.rb
|
219
|
+
- lib/riak/core_ext/extract_options.rbc
|
198
220
|
- lib/riak/core_ext/json.rb
|
221
|
+
- lib/riak/core_ext/json.rbc
|
199
222
|
- lib/riak/core_ext/slice.rb
|
223
|
+
- lib/riak/core_ext/slice.rbc
|
200
224
|
- lib/riak/core_ext/stringify_keys.rb
|
225
|
+
- lib/riak/core_ext/stringify_keys.rbc
|
201
226
|
- lib/riak/core_ext/symbolize_keys.rb
|
227
|
+
- lib/riak/core_ext/symbolize_keys.rbc
|
202
228
|
- lib/riak/core_ext/to_param.rb
|
229
|
+
- lib/riak/core_ext/to_param.rbc
|
203
230
|
- lib/riak/core_ext.rb
|
231
|
+
- lib/riak/core_ext.rbc
|
204
232
|
- lib/riak/encoding.rb
|
233
|
+
- lib/riak/encoding.rbc
|
205
234
|
- lib/riak/failed_request.rb
|
235
|
+
- lib/riak/failed_request.rbc
|
206
236
|
- lib/riak/i18n.rb
|
237
|
+
- lib/riak/i18n.rbc
|
207
238
|
- lib/riak/json.rb
|
239
|
+
- lib/riak/json.rbc
|
208
240
|
- lib/riak/link.rb
|
241
|
+
- lib/riak/link.rbc
|
209
242
|
- lib/riak/locale/en.yml
|
210
243
|
- lib/riak/locale/fr.yml
|
211
244
|
- lib/riak/map_reduce/filter_builder.rb
|
245
|
+
- lib/riak/map_reduce/filter_builder.rbc
|
212
246
|
- lib/riak/map_reduce/phase.rb
|
247
|
+
- lib/riak/map_reduce/phase.rbc
|
213
248
|
- lib/riak/map_reduce.rb
|
249
|
+
- lib/riak/map_reduce.rbc
|
214
250
|
- lib/riak/map_reduce_error.rb
|
215
|
-
- lib/riak/
|
251
|
+
- lib/riak/map_reduce_error.rbc
|
216
252
|
- lib/riak/node/configuration.rb
|
253
|
+
- lib/riak/node/configuration.rbc
|
217
254
|
- lib/riak/node/console.rb
|
255
|
+
- lib/riak/node/console.rbc
|
218
256
|
- lib/riak/node/control.rb
|
257
|
+
- lib/riak/node/control.rbc
|
219
258
|
- lib/riak/node/defaults.rb
|
259
|
+
- lib/riak/node/defaults.rbc
|
220
260
|
- lib/riak/node/generation.rb
|
261
|
+
- lib/riak/node/generation.rbc
|
221
262
|
- lib/riak/node/log.rb
|
263
|
+
- lib/riak/node/log.rbc
|
222
264
|
- lib/riak/node/version.rb
|
265
|
+
- lib/riak/node/version.rbc
|
223
266
|
- lib/riak/node.rb
|
267
|
+
- lib/riak/node.rbc
|
224
268
|
- lib/riak/robject.rb
|
269
|
+
- lib/riak/robject.rbc
|
225
270
|
- lib/riak/search.rb
|
226
271
|
- lib/riak/serializers.rb
|
272
|
+
- lib/riak/serializers.rbc
|
227
273
|
- lib/riak/stamp.rb
|
274
|
+
- lib/riak/stamp.rbc
|
228
275
|
- lib/riak/test_server.rb
|
276
|
+
- lib/riak/test_server.rbc
|
229
277
|
- lib/riak/util/escape.rb
|
278
|
+
- lib/riak/util/escape.rbc
|
230
279
|
- lib/riak/util/headers.rb
|
280
|
+
- lib/riak/util/headers.rbc
|
231
281
|
- lib/riak/util/multipart/stream_parser.rb
|
282
|
+
- lib/riak/util/multipart/stream_parser.rbc
|
232
283
|
- lib/riak/util/multipart.rb
|
284
|
+
- lib/riak/util/multipart.rbc
|
233
285
|
- lib/riak/util/tcp_socket_extensions.rb
|
286
|
+
- lib/riak/util/tcp_socket_extensions.rbc
|
234
287
|
- lib/riak/util/translation.rb
|
288
|
+
- lib/riak/util/translation.rbc
|
235
289
|
- lib/riak/version.rb
|
290
|
+
- lib/riak/version.rbc
|
236
291
|
- lib/riak/walk_spec.rb
|
292
|
+
- lib/riak/walk_spec.rbc
|
237
293
|
- lib/riak.rb
|
294
|
+
- lib/riak.rbc
|
238
295
|
- LICENSE
|
239
296
|
- pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.beam
|
240
297
|
- pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.erl
|
@@ -624,6 +681,524 @@ files:
|
|
624
681
|
- pkg/riak-client-1.0.1/spec/support/unified_backend_examples.rb
|
625
682
|
- pkg/riak-client-1.0.1/spec/support/version_filter.rb
|
626
683
|
- pkg/riak-client-1.0.1.gem
|
684
|
+
- pkg/riak-client-1.0.2/erl_src/riak_kv_test014_backend.beam
|
685
|
+
- pkg/riak-client-1.0.2/erl_src/riak_kv_test014_backend.erl
|
686
|
+
- pkg/riak-client-1.0.2/erl_src/riak_kv_test_backend.beam
|
687
|
+
- pkg/riak-client-1.0.2/erl_src/riak_kv_test_backend.erl
|
688
|
+
- pkg/riak-client-1.0.2/erl_src/riak_search_test_backend.beam
|
689
|
+
- pkg/riak-client-1.0.2/erl_src/riak_search_test_backend.erl
|
690
|
+
- pkg/riak-client-1.0.2/Gemfile
|
691
|
+
- pkg/riak-client-1.0.2/Guardfile
|
692
|
+
- pkg/riak-client-1.0.2/lib/riak/bucket.rb
|
693
|
+
- pkg/riak-client-1.0.2/lib/riak/client/#http_backend.rb#
|
694
|
+
- pkg/riak-client-1.0.2/lib/riak/client/beefcake/messages.rb
|
695
|
+
- pkg/riak-client-1.0.2/lib/riak/client/beefcake/object_methods.rb
|
696
|
+
- pkg/riak-client-1.0.2/lib/riak/client/beefcake_protobuffs_backend.rb
|
697
|
+
- pkg/riak-client-1.0.2/lib/riak/client/decaying.rb
|
698
|
+
- pkg/riak-client-1.0.2/lib/riak/client/excon_backend.rb
|
699
|
+
- pkg/riak-client-1.0.2/lib/riak/client/http_backend/configuration.rb
|
700
|
+
- pkg/riak-client-1.0.2/lib/riak/client/http_backend/key_streamer.rb
|
701
|
+
- pkg/riak-client-1.0.2/lib/riak/client/http_backend/object_methods.rb
|
702
|
+
- pkg/riak-client-1.0.2/lib/riak/client/http_backend/request_headers.rb
|
703
|
+
- pkg/riak-client-1.0.2/lib/riak/client/http_backend/transport_methods.rb
|
704
|
+
- pkg/riak-client-1.0.2/lib/riak/client/http_backend.rb
|
705
|
+
- pkg/riak-client-1.0.2/lib/riak/client/net_http_backend.rb
|
706
|
+
- pkg/riak-client-1.0.2/lib/riak/client/node.rb
|
707
|
+
- pkg/riak-client-1.0.2/lib/riak/client/pool.rb
|
708
|
+
- pkg/riak-client-1.0.2/lib/riak/client/protobuffs_backend.rb
|
709
|
+
- pkg/riak-client-1.0.2/lib/riak/client/search.rb
|
710
|
+
- pkg/riak-client-1.0.2/lib/riak/client.rb
|
711
|
+
- pkg/riak-client-1.0.2/lib/riak/cluster.rb
|
712
|
+
- pkg/riak-client-1.0.2/lib/riak/core_ext/blank.rb
|
713
|
+
- pkg/riak-client-1.0.2/lib/riak/core_ext/deep_dup.rb
|
714
|
+
- pkg/riak-client-1.0.2/lib/riak/core_ext/extract_options.rb
|
715
|
+
- pkg/riak-client-1.0.2/lib/riak/core_ext/json.rb
|
716
|
+
- pkg/riak-client-1.0.2/lib/riak/core_ext/slice.rb
|
717
|
+
- pkg/riak-client-1.0.2/lib/riak/core_ext/stringify_keys.rb
|
718
|
+
- pkg/riak-client-1.0.2/lib/riak/core_ext/symbolize_keys.rb
|
719
|
+
- pkg/riak-client-1.0.2/lib/riak/core_ext/to_param.rb
|
720
|
+
- pkg/riak-client-1.0.2/lib/riak/core_ext.rb
|
721
|
+
- pkg/riak-client-1.0.2/lib/riak/encoding.rb
|
722
|
+
- pkg/riak-client-1.0.2/lib/riak/failed_request.rb
|
723
|
+
- pkg/riak-client-1.0.2/lib/riak/i18n.rb
|
724
|
+
- pkg/riak-client-1.0.2/lib/riak/json.rb
|
725
|
+
- pkg/riak-client-1.0.2/lib/riak/link.rb
|
726
|
+
- pkg/riak-client-1.0.2/lib/riak/locale/en.yml
|
727
|
+
- pkg/riak-client-1.0.2/lib/riak/locale/fr.yml
|
728
|
+
- pkg/riak-client-1.0.2/lib/riak/map_reduce/filter_builder.rb
|
729
|
+
- pkg/riak-client-1.0.2/lib/riak/map_reduce/phase.rb
|
730
|
+
- pkg/riak-client-1.0.2/lib/riak/map_reduce.rb
|
731
|
+
- pkg/riak-client-1.0.2/lib/riak/map_reduce_error.rb
|
732
|
+
- pkg/riak-client-1.0.2/lib/riak/node/#console.rb#
|
733
|
+
- pkg/riak-client-1.0.2/lib/riak/node/configuration.rb
|
734
|
+
- pkg/riak-client-1.0.2/lib/riak/node/console.rb
|
735
|
+
- pkg/riak-client-1.0.2/lib/riak/node/control.rb
|
736
|
+
- pkg/riak-client-1.0.2/lib/riak/node/defaults.rb
|
737
|
+
- pkg/riak-client-1.0.2/lib/riak/node/generation.rb
|
738
|
+
- pkg/riak-client-1.0.2/lib/riak/node/log.rb
|
739
|
+
- pkg/riak-client-1.0.2/lib/riak/node/version.rb
|
740
|
+
- pkg/riak-client-1.0.2/lib/riak/node.rb
|
741
|
+
- pkg/riak-client-1.0.2/lib/riak/robject.rb
|
742
|
+
- pkg/riak-client-1.0.2/lib/riak/search.rb
|
743
|
+
- pkg/riak-client-1.0.2/lib/riak/serializers.rb
|
744
|
+
- pkg/riak-client-1.0.2/lib/riak/stamp.rb
|
745
|
+
- pkg/riak-client-1.0.2/lib/riak/test_server.rb
|
746
|
+
- pkg/riak-client-1.0.2/lib/riak/util/escape.rb
|
747
|
+
- pkg/riak-client-1.0.2/lib/riak/util/headers.rb
|
748
|
+
- pkg/riak-client-1.0.2/lib/riak/util/multipart/stream_parser.rb
|
749
|
+
- pkg/riak-client-1.0.2/lib/riak/util/multipart.rb
|
750
|
+
- pkg/riak-client-1.0.2/lib/riak/util/tcp_socket_extensions.rb
|
751
|
+
- pkg/riak-client-1.0.2/lib/riak/util/translation.rb
|
752
|
+
- pkg/riak-client-1.0.2/lib/riak/version.rb
|
753
|
+
- pkg/riak-client-1.0.2/lib/riak/walk_spec.rb
|
754
|
+
- pkg/riak-client-1.0.2/lib/riak.rb
|
755
|
+
- pkg/riak-client-1.0.2/LICENSE
|
756
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.beam
|
757
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.erl
|
758
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/erl_src/riak_kv_test_backend.beam
|
759
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/erl_src/riak_kv_test_backend.erl
|
760
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/erl_src/riak_search_test_backend.beam
|
761
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/erl_src/riak_search_test_backend.erl
|
762
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/Gemfile
|
763
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/Guardfile
|
764
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/bucket.rb
|
765
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/#http_backend.rb#
|
766
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/beefcake/messages.rb
|
767
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/beefcake/object_methods.rb
|
768
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/beefcake_protobuffs_backend.rb
|
769
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/decaying.rb
|
770
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/excon_backend.rb
|
771
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/http_backend/configuration.rb
|
772
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/http_backend/key_streamer.rb
|
773
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/http_backend/object_methods.rb
|
774
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/http_backend/request_headers.rb
|
775
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/http_backend/transport_methods.rb
|
776
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/http_backend.rb
|
777
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/net_http_backend.rb
|
778
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/node.rb
|
779
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/pool.rb
|
780
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/protobuffs_backend.rb
|
781
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client/search.rb
|
782
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/client.rb
|
783
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/cluster.rb
|
784
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/core_ext/blank.rb
|
785
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/core_ext/deep_dup.rb
|
786
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/core_ext/extract_options.rb
|
787
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/core_ext/json.rb
|
788
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/core_ext/slice.rb
|
789
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/core_ext/stringify_keys.rb
|
790
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/core_ext/symbolize_keys.rb
|
791
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/core_ext/to_param.rb
|
792
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/core_ext.rb
|
793
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/encoding.rb
|
794
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/failed_request.rb
|
795
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/i18n.rb
|
796
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/json.rb
|
797
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/link.rb
|
798
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/locale/en.yml
|
799
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/map_reduce/filter_builder.rb
|
800
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/map_reduce/phase.rb
|
801
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/map_reduce.rb
|
802
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/map_reduce_error.rb
|
803
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/node/#console.rb#
|
804
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/node/configuration.rb
|
805
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/node/console.rb
|
806
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/node/control.rb
|
807
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/node/defaults.rb
|
808
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/node/generation.rb
|
809
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/node/log.rb
|
810
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/node/version.rb
|
811
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/node.rb
|
812
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/robject.rb
|
813
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/search.rb
|
814
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/serializers.rb
|
815
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/stamp.rb
|
816
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/test_server.rb
|
817
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/util/escape.rb
|
818
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/util/headers.rb
|
819
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/util/multipart/stream_parser.rb
|
820
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/util/multipart.rb
|
821
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/util/tcp_socket_extensions.rb
|
822
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/util/translation.rb
|
823
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/version.rb
|
824
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak/walk_spec.rb
|
825
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/lib/riak.rb
|
826
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/LICENSE
|
827
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/Rakefile
|
828
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/README.markdown
|
829
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/RELEASE_NOTES.md
|
830
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/riak-client.gemspec
|
831
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/failover/failover.rb
|
832
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/fixtures/cat.jpg
|
833
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/fixtures/multipart-blank.txt
|
834
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/fixtures/multipart-mapreduce.txt
|
835
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/fixtures/multipart-with-body.txt
|
836
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/fixtures/multipart-with-marked-tombstones.txt
|
837
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/fixtures/multipart-with-unmarked-tombstone.txt
|
838
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/fixtures/server.cert.crt
|
839
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/fixtures/server.cert.key
|
840
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/fixtures/test.pem
|
841
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/integration/riak/cluster_spec.rb
|
842
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/integration/riak/http_backends_spec.rb
|
843
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/integration/riak/node_spec.rb
|
844
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/integration/riak/protobuffs_backends_spec.rb
|
845
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/integration/riak/test_server_spec.rb
|
846
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/integration/riak/threading_spec.rb
|
847
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/beefcake_protobuffs_backend/object_methods_spec.rb
|
848
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/beefcake_protobuffs_backend_spec.rb
|
849
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/bucket_spec.rb
|
850
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/client_spec.rb
|
851
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/core_ext/to_param_spec.rb
|
852
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/escape_spec.rb
|
853
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/excon_backend_spec.rb
|
854
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/headers_spec.rb
|
855
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/http_backend/configuration_spec.rb
|
856
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/http_backend/object_methods_spec.rb
|
857
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/http_backend/transport_methods_spec.rb
|
858
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/http_backend_spec.rb
|
859
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/link_spec.rb
|
860
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/map_reduce/filter_builder_spec.rb
|
861
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/map_reduce/phase_spec.rb
|
862
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/map_reduce_spec.rb
|
863
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/multipart_spec.rb
|
864
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/net_http_backend_spec.rb
|
865
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/node_spec.rb
|
866
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/pool_spec.rb
|
867
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/robject_spec.rb
|
868
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/search_spec.rb
|
869
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/serializers_spec.rb
|
870
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/stamp_spec.rb
|
871
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/stream_parser_spec.rb
|
872
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/riak/walk_spec_spec.rb
|
873
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/spec_helper.rb
|
874
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/drb_mock_server.rb
|
875
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/http_backend_implementation_examples.rb
|
876
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/integration_setup.rb
|
877
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/mock_server.rb
|
878
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/mocks.rb
|
879
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/sometimes.rb
|
880
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/test_server.rb
|
881
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/test_server.yml.example
|
882
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/unified_backend_examples.rb
|
883
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0/spec/support/version_filter.rb
|
884
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.0.gem
|
885
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/erl_src/riak_kv_test014_backend.beam
|
886
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/erl_src/riak_kv_test014_backend.erl
|
887
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/erl_src/riak_kv_test_backend.beam
|
888
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/erl_src/riak_kv_test_backend.erl
|
889
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/erl_src/riak_search_test_backend.beam
|
890
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/erl_src/riak_search_test_backend.erl
|
891
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/Gemfile
|
892
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/Guardfile
|
893
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/bucket.rb
|
894
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/#http_backend.rb#
|
895
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/beefcake/messages.rb
|
896
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/beefcake/object_methods.rb
|
897
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/beefcake_protobuffs_backend.rb
|
898
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/decaying.rb
|
899
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/excon_backend.rb
|
900
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/http_backend/configuration.rb
|
901
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/http_backend/key_streamer.rb
|
902
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/http_backend/object_methods.rb
|
903
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/http_backend/request_headers.rb
|
904
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/http_backend/transport_methods.rb
|
905
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/http_backend.rb
|
906
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/net_http_backend.rb
|
907
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/node.rb
|
908
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/pool.rb
|
909
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/protobuffs_backend.rb
|
910
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client/search.rb
|
911
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/client.rb
|
912
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/cluster.rb
|
913
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/core_ext/blank.rb
|
914
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/core_ext/deep_dup.rb
|
915
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/core_ext/extract_options.rb
|
916
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/core_ext/json.rb
|
917
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/core_ext/slice.rb
|
918
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/core_ext/stringify_keys.rb
|
919
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/core_ext/symbolize_keys.rb
|
920
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/core_ext/to_param.rb
|
921
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/core_ext.rb
|
922
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/encoding.rb
|
923
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/failed_request.rb
|
924
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/i18n.rb
|
925
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/json.rb
|
926
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/link.rb
|
927
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/locale/en.yml
|
928
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/locale/fr.yml
|
929
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/map_reduce/filter_builder.rb
|
930
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/map_reduce/phase.rb
|
931
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/map_reduce.rb
|
932
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/map_reduce_error.rb
|
933
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/node/#console.rb#
|
934
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/node/configuration.rb
|
935
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/node/console.rb
|
936
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/node/control.rb
|
937
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/node/defaults.rb
|
938
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/node/generation.rb
|
939
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/node/log.rb
|
940
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/node/version.rb
|
941
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/node.rb
|
942
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/robject.rb
|
943
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/search.rb
|
944
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/serializers.rb
|
945
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/stamp.rb
|
946
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/test_server.rb
|
947
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/util/escape.rb
|
948
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/util/headers.rb
|
949
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/util/multipart/stream_parser.rb
|
950
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/util/multipart.rb
|
951
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/util/tcp_socket_extensions.rb
|
952
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/util/translation.rb
|
953
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/version.rb
|
954
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak/walk_spec.rb
|
955
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/lib/riak.rb
|
956
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/LICENSE
|
957
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.beam
|
958
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.erl
|
959
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_kv_test_backend.beam
|
960
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_kv_test_backend.erl
|
961
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_search_test_backend.beam
|
962
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_search_test_backend.erl
|
963
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/Gemfile
|
964
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/Guardfile
|
965
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/bucket.rb
|
966
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/#http_backend.rb#
|
967
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/beefcake/messages.rb
|
968
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/beefcake/object_methods.rb
|
969
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/beefcake_protobuffs_backend.rb
|
970
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/decaying.rb
|
971
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/excon_backend.rb
|
972
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/configuration.rb
|
973
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/key_streamer.rb
|
974
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/object_methods.rb
|
975
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/request_headers.rb
|
976
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/transport_methods.rb
|
977
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend.rb
|
978
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/net_http_backend.rb
|
979
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/node.rb
|
980
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/pool.rb
|
981
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/protobuffs_backend.rb
|
982
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/search.rb
|
983
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client.rb
|
984
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/cluster.rb
|
985
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/blank.rb
|
986
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/deep_dup.rb
|
987
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/extract_options.rb
|
988
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/json.rb
|
989
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/slice.rb
|
990
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/stringify_keys.rb
|
991
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/symbolize_keys.rb
|
992
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/to_param.rb
|
993
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext.rb
|
994
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/encoding.rb
|
995
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/failed_request.rb
|
996
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/i18n.rb
|
997
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/json.rb
|
998
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/link.rb
|
999
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/locale/en.yml
|
1000
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/map_reduce/filter_builder.rb
|
1001
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/map_reduce/phase.rb
|
1002
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/map_reduce.rb
|
1003
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/map_reduce_error.rb
|
1004
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/#console.rb#
|
1005
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/configuration.rb
|
1006
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/console.rb
|
1007
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/control.rb
|
1008
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/defaults.rb
|
1009
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/generation.rb
|
1010
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/log.rb
|
1011
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/version.rb
|
1012
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node.rb
|
1013
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/robject.rb
|
1014
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/search.rb
|
1015
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/serializers.rb
|
1016
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/stamp.rb
|
1017
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/test_server.rb
|
1018
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/escape.rb
|
1019
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/headers.rb
|
1020
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/multipart/stream_parser.rb
|
1021
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/multipart.rb
|
1022
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/tcp_socket_extensions.rb
|
1023
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/translation.rb
|
1024
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/version.rb
|
1025
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/walk_spec.rb
|
1026
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak.rb
|
1027
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/LICENSE
|
1028
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/Rakefile
|
1029
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/README.markdown
|
1030
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/RELEASE_NOTES.md
|
1031
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/riak-client.gemspec
|
1032
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/failover/failover.rb
|
1033
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/cat.jpg
|
1034
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-blank.txt
|
1035
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-mapreduce.txt
|
1036
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-with-body.txt
|
1037
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-with-marked-tombstones.txt
|
1038
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-with-unmarked-tombstone.txt
|
1039
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/server.cert.crt
|
1040
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/server.cert.key
|
1041
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/test.pem
|
1042
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/cluster_spec.rb
|
1043
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/http_backends_spec.rb
|
1044
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/node_spec.rb
|
1045
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/protobuffs_backends_spec.rb
|
1046
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/test_server_spec.rb
|
1047
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/threading_spec.rb
|
1048
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/beefcake_protobuffs_backend/object_methods_spec.rb
|
1049
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/beefcake_protobuffs_backend_spec.rb
|
1050
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/bucket_spec.rb
|
1051
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/client_spec.rb
|
1052
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/core_ext/to_param_spec.rb
|
1053
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/escape_spec.rb
|
1054
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/excon_backend_spec.rb
|
1055
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/headers_spec.rb
|
1056
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/http_backend/configuration_spec.rb
|
1057
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/http_backend/object_methods_spec.rb
|
1058
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/http_backend/transport_methods_spec.rb
|
1059
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/http_backend_spec.rb
|
1060
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/link_spec.rb
|
1061
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/map_reduce/filter_builder_spec.rb
|
1062
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/map_reduce/phase_spec.rb
|
1063
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/map_reduce_spec.rb
|
1064
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/multipart_spec.rb
|
1065
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/net_http_backend_spec.rb
|
1066
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/node_spec.rb
|
1067
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/pool_spec.rb
|
1068
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/robject_spec.rb
|
1069
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/search_spec.rb
|
1070
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/serializers_spec.rb
|
1071
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/stamp_spec.rb
|
1072
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/stream_parser_spec.rb
|
1073
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/walk_spec_spec.rb
|
1074
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/spec_helper.rb
|
1075
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/drb_mock_server.rb
|
1076
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/http_backend_implementation_examples.rb
|
1077
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/integration_setup.rb
|
1078
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/mock_server.rb
|
1079
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/mocks.rb
|
1080
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/sometimes.rb
|
1081
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/test_server.rb
|
1082
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/test_server.yml.example
|
1083
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/unified_backend_examples.rb
|
1084
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/version_filter.rb
|
1085
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/pkg/riak-client-1.0.0.gem
|
1086
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/Rakefile
|
1087
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/README.markdown
|
1088
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/RELEASE_NOTES.md
|
1089
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/riak-client.gemspec
|
1090
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/failover/failover.rb
|
1091
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/fixtures/cat.jpg
|
1092
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/fixtures/multipart-blank.txt
|
1093
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/fixtures/multipart-mapreduce.txt
|
1094
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/fixtures/multipart-with-body.txt
|
1095
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/fixtures/multipart-with-marked-tombstones.txt
|
1096
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/fixtures/multipart-with-unmarked-tombstone.txt
|
1097
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/fixtures/server.cert.crt
|
1098
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/fixtures/server.cert.key
|
1099
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/fixtures/test.pem
|
1100
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/integration/riak/cluster_spec.rb
|
1101
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/integration/riak/http_backends_spec.rb
|
1102
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/integration/riak/node_spec.rb
|
1103
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/integration/riak/protobuffs_backends_spec.rb
|
1104
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/integration/riak/test_server_spec.rb
|
1105
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/integration/riak/threading_spec.rb
|
1106
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/beefcake_protobuffs_backend/object_methods_spec.rb
|
1107
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/beefcake_protobuffs_backend_spec.rb
|
1108
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/bucket_spec.rb
|
1109
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/client_spec.rb
|
1110
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/core_ext/to_param_spec.rb
|
1111
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/escape_spec.rb
|
1112
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/excon_backend_spec.rb
|
1113
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/headers_spec.rb
|
1114
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/http_backend/configuration_spec.rb
|
1115
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/http_backend/object_methods_spec.rb
|
1116
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/http_backend/transport_methods_spec.rb
|
1117
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/http_backend_spec.rb
|
1118
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/link_spec.rb
|
1119
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/map_reduce/filter_builder_spec.rb
|
1120
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/map_reduce/phase_spec.rb
|
1121
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/map_reduce_spec.rb
|
1122
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/multipart_spec.rb
|
1123
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/net_http_backend_spec.rb
|
1124
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/node_spec.rb
|
1125
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/pool_spec.rb
|
1126
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/robject_spec.rb
|
1127
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/search_spec.rb
|
1128
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/serializers_spec.rb
|
1129
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/stamp_spec.rb
|
1130
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/stream_parser_spec.rb
|
1131
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/riak/walk_spec_spec.rb
|
1132
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/spec_helper.rb
|
1133
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/drb_mock_server.rb
|
1134
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/http_backend_implementation_examples.rb
|
1135
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/integration_setup.rb
|
1136
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/mock_server.rb
|
1137
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/mocks.rb
|
1138
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/sometimes.rb
|
1139
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/test_server.rb
|
1140
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/test_server.yml.example
|
1141
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/unified_backend_examples.rb
|
1142
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1/spec/support/version_filter.rb
|
1143
|
+
- pkg/riak-client-1.0.2/pkg/riak-client-1.0.1.gem
|
1144
|
+
- pkg/riak-client-1.0.2/Rakefile
|
1145
|
+
- pkg/riak-client-1.0.2/README.markdown
|
1146
|
+
- pkg/riak-client-1.0.2/RELEASE_NOTES.md
|
1147
|
+
- pkg/riak-client-1.0.2/riak-client.gemspec
|
1148
|
+
- pkg/riak-client-1.0.2/spec/failover/failover.rb
|
1149
|
+
- pkg/riak-client-1.0.2/spec/fixtures/cat.jpg
|
1150
|
+
- pkg/riak-client-1.0.2/spec/fixtures/multipart-blank.txt
|
1151
|
+
- pkg/riak-client-1.0.2/spec/fixtures/multipart-mapreduce.txt
|
1152
|
+
- pkg/riak-client-1.0.2/spec/fixtures/multipart-with-body.txt
|
1153
|
+
- pkg/riak-client-1.0.2/spec/fixtures/multipart-with-marked-tombstones.txt
|
1154
|
+
- pkg/riak-client-1.0.2/spec/fixtures/multipart-with-unmarked-tombstone.txt
|
1155
|
+
- pkg/riak-client-1.0.2/spec/fixtures/server.cert.crt
|
1156
|
+
- pkg/riak-client-1.0.2/spec/fixtures/server.cert.key
|
1157
|
+
- pkg/riak-client-1.0.2/spec/fixtures/test.pem
|
1158
|
+
- pkg/riak-client-1.0.2/spec/integration/riak/cluster_spec.rb
|
1159
|
+
- pkg/riak-client-1.0.2/spec/integration/riak/http_backends_spec.rb
|
1160
|
+
- pkg/riak-client-1.0.2/spec/integration/riak/node_spec.rb
|
1161
|
+
- pkg/riak-client-1.0.2/spec/integration/riak/protobuffs_backends_spec.rb
|
1162
|
+
- pkg/riak-client-1.0.2/spec/integration/riak/test_server_spec.rb
|
1163
|
+
- pkg/riak-client-1.0.2/spec/integration/riak/threading_spec.rb
|
1164
|
+
- pkg/riak-client-1.0.2/spec/riak/beefcake_protobuffs_backend/object_methods_spec.rb
|
1165
|
+
- pkg/riak-client-1.0.2/spec/riak/beefcake_protobuffs_backend_spec.rb
|
1166
|
+
- pkg/riak-client-1.0.2/spec/riak/bucket_spec.rb
|
1167
|
+
- pkg/riak-client-1.0.2/spec/riak/client_spec.rb
|
1168
|
+
- pkg/riak-client-1.0.2/spec/riak/core_ext/to_param_spec.rb
|
1169
|
+
- pkg/riak-client-1.0.2/spec/riak/escape_spec.rb
|
1170
|
+
- pkg/riak-client-1.0.2/spec/riak/excon_backend_spec.rb
|
1171
|
+
- pkg/riak-client-1.0.2/spec/riak/headers_spec.rb
|
1172
|
+
- pkg/riak-client-1.0.2/spec/riak/http_backend/configuration_spec.rb
|
1173
|
+
- pkg/riak-client-1.0.2/spec/riak/http_backend/object_methods_spec.rb
|
1174
|
+
- pkg/riak-client-1.0.2/spec/riak/http_backend/transport_methods_spec.rb
|
1175
|
+
- pkg/riak-client-1.0.2/spec/riak/http_backend_spec.rb
|
1176
|
+
- pkg/riak-client-1.0.2/spec/riak/link_spec.rb
|
1177
|
+
- pkg/riak-client-1.0.2/spec/riak/map_reduce/filter_builder_spec.rb
|
1178
|
+
- pkg/riak-client-1.0.2/spec/riak/map_reduce/phase_spec.rb
|
1179
|
+
- pkg/riak-client-1.0.2/spec/riak/map_reduce_spec.rb
|
1180
|
+
- pkg/riak-client-1.0.2/spec/riak/multipart_spec.rb
|
1181
|
+
- pkg/riak-client-1.0.2/spec/riak/net_http_backend_spec.rb
|
1182
|
+
- pkg/riak-client-1.0.2/spec/riak/node_spec.rb
|
1183
|
+
- pkg/riak-client-1.0.2/spec/riak/pool_spec.rb
|
1184
|
+
- pkg/riak-client-1.0.2/spec/riak/robject_spec.rb
|
1185
|
+
- pkg/riak-client-1.0.2/spec/riak/search_spec.rb
|
1186
|
+
- pkg/riak-client-1.0.2/spec/riak/serializers_spec.rb
|
1187
|
+
- pkg/riak-client-1.0.2/spec/riak/stamp_spec.rb
|
1188
|
+
- pkg/riak-client-1.0.2/spec/riak/stream_parser_spec.rb
|
1189
|
+
- pkg/riak-client-1.0.2/spec/riak/walk_spec_spec.rb
|
1190
|
+
- pkg/riak-client-1.0.2/spec/spec_helper.rb
|
1191
|
+
- pkg/riak-client-1.0.2/spec/support/drb_mock_server.rb
|
1192
|
+
- pkg/riak-client-1.0.2/spec/support/http_backend_implementation_examples.rb
|
1193
|
+
- pkg/riak-client-1.0.2/spec/support/integration_setup.rb
|
1194
|
+
- pkg/riak-client-1.0.2/spec/support/mock_server.rb
|
1195
|
+
- pkg/riak-client-1.0.2/spec/support/mocks.rb
|
1196
|
+
- pkg/riak-client-1.0.2/spec/support/sometimes.rb
|
1197
|
+
- pkg/riak-client-1.0.2/spec/support/test_server.rb
|
1198
|
+
- pkg/riak-client-1.0.2/spec/support/test_server.yml.example
|
1199
|
+
- pkg/riak-client-1.0.2/spec/support/unified_backend_examples.rb
|
1200
|
+
- pkg/riak-client-1.0.2/spec/support/version_filter.rb
|
1201
|
+
- pkg/riak-client-1.0.2.gem
|
627
1202
|
- Rakefile
|
628
1203
|
- README.markdown
|
629
1204
|
- RELEASE_NOTES.md
|
@@ -639,48 +1214,90 @@ files:
|
|
639
1214
|
- spec/fixtures/server.cert.key
|
640
1215
|
- spec/fixtures/test.pem
|
641
1216
|
- spec/integration/riak/cluster_spec.rb
|
1217
|
+
- spec/integration/riak/cluster_spec.rbc
|
642
1218
|
- spec/integration/riak/http_backends_spec.rb
|
1219
|
+
- spec/integration/riak/http_backends_spec.rbc
|
643
1220
|
- spec/integration/riak/node_spec.rb
|
1221
|
+
- spec/integration/riak/node_spec.rbc
|
644
1222
|
- spec/integration/riak/protobuffs_backends_spec.rb
|
1223
|
+
- spec/integration/riak/protobuffs_backends_spec.rbc
|
645
1224
|
- spec/integration/riak/test_server_spec.rb
|
1225
|
+
- spec/integration/riak/test_server_spec.rbc
|
646
1226
|
- spec/integration/riak/threading_spec.rb
|
1227
|
+
- spec/integration/riak/threading_spec.rbc
|
647
1228
|
- spec/riak/beefcake_protobuffs_backend/object_methods_spec.rb
|
1229
|
+
- spec/riak/beefcake_protobuffs_backend/object_methods_spec.rbc
|
648
1230
|
- spec/riak/beefcake_protobuffs_backend_spec.rb
|
1231
|
+
- spec/riak/beefcake_protobuffs_backend_spec.rbc
|
649
1232
|
- spec/riak/bucket_spec.rb
|
1233
|
+
- spec/riak/bucket_spec.rbc
|
650
1234
|
- spec/riak/client_spec.rb
|
1235
|
+
- spec/riak/client_spec.rbc
|
651
1236
|
- spec/riak/core_ext/to_param_spec.rb
|
1237
|
+
- spec/riak/core_ext/to_param_spec.rbc
|
652
1238
|
- spec/riak/escape_spec.rb
|
1239
|
+
- spec/riak/escape_spec.rbc
|
653
1240
|
- spec/riak/excon_backend_spec.rb
|
1241
|
+
- spec/riak/excon_backend_spec.rbc
|
654
1242
|
- spec/riak/headers_spec.rb
|
1243
|
+
- spec/riak/headers_spec.rbc
|
655
1244
|
- spec/riak/http_backend/configuration_spec.rb
|
1245
|
+
- spec/riak/http_backend/configuration_spec.rbc
|
656
1246
|
- spec/riak/http_backend/object_methods_spec.rb
|
1247
|
+
- spec/riak/http_backend/object_methods_spec.rbc
|
657
1248
|
- spec/riak/http_backend/transport_methods_spec.rb
|
1249
|
+
- spec/riak/http_backend/transport_methods_spec.rbc
|
658
1250
|
- spec/riak/http_backend_spec.rb
|
1251
|
+
- spec/riak/http_backend_spec.rbc
|
659
1252
|
- spec/riak/link_spec.rb
|
1253
|
+
- spec/riak/link_spec.rbc
|
660
1254
|
- spec/riak/map_reduce/filter_builder_spec.rb
|
1255
|
+
- spec/riak/map_reduce/filter_builder_spec.rbc
|
661
1256
|
- spec/riak/map_reduce/phase_spec.rb
|
1257
|
+
- spec/riak/map_reduce/phase_spec.rbc
|
662
1258
|
- spec/riak/map_reduce_spec.rb
|
1259
|
+
- spec/riak/map_reduce_spec.rbc
|
663
1260
|
- spec/riak/multipart_spec.rb
|
1261
|
+
- spec/riak/multipart_spec.rbc
|
664
1262
|
- spec/riak/net_http_backend_spec.rb
|
1263
|
+
- spec/riak/net_http_backend_spec.rbc
|
665
1264
|
- spec/riak/node_spec.rb
|
1265
|
+
- spec/riak/node_spec.rbc
|
666
1266
|
- spec/riak/pool_spec.rb
|
1267
|
+
- spec/riak/pool_spec.rbc
|
667
1268
|
- spec/riak/robject_spec.rb
|
1269
|
+
- spec/riak/robject_spec.rbc
|
668
1270
|
- spec/riak/search_spec.rb
|
1271
|
+
- spec/riak/search_spec.rbc
|
669
1272
|
- spec/riak/serializers_spec.rb
|
1273
|
+
- spec/riak/serializers_spec.rbc
|
670
1274
|
- spec/riak/stamp_spec.rb
|
1275
|
+
- spec/riak/stamp_spec.rbc
|
671
1276
|
- spec/riak/stream_parser_spec.rb
|
1277
|
+
- spec/riak/stream_parser_spec.rbc
|
672
1278
|
- spec/riak/walk_spec_spec.rb
|
1279
|
+
- spec/riak/walk_spec_spec.rbc
|
673
1280
|
- spec/spec_helper.rb
|
1281
|
+
- spec/spec_helper.rbc
|
674
1282
|
- spec/support/drb_mock_server.rb
|
1283
|
+
- spec/support/drb_mock_server.rbc
|
675
1284
|
- spec/support/http_backend_implementation_examples.rb
|
1285
|
+
- spec/support/http_backend_implementation_examples.rbc
|
676
1286
|
- spec/support/integration_setup.rb
|
1287
|
+
- spec/support/integration_setup.rbc
|
677
1288
|
- spec/support/mock_server.rb
|
1289
|
+
- spec/support/mock_server.rbc
|
678
1290
|
- spec/support/mocks.rb
|
1291
|
+
- spec/support/mocks.rbc
|
679
1292
|
- spec/support/sometimes.rb
|
1293
|
+
- spec/support/sometimes.rbc
|
680
1294
|
- spec/support/test_server.rb
|
1295
|
+
- spec/support/test_server.rbc
|
681
1296
|
- spec/support/test_server.yml.example
|
682
1297
|
- spec/support/unified_backend_examples.rb
|
1298
|
+
- spec/support/unified_backend_examples.rbc
|
683
1299
|
- spec/support/version_filter.rb
|
1300
|
+
- spec/support/version_filter.rbc
|
684
1301
|
- .gitignore
|
685
1302
|
homepage: http://github.com/basho/riak-ruby-client
|
686
1303
|
licenses: []
|
@@ -718,46 +1335,88 @@ test_files:
|
|
718
1335
|
- spec/fixtures/server.cert.key
|
719
1336
|
- spec/fixtures/test.pem
|
720
1337
|
- spec/integration/riak/cluster_spec.rb
|
1338
|
+
- spec/integration/riak/cluster_spec.rbc
|
721
1339
|
- spec/integration/riak/http_backends_spec.rb
|
1340
|
+
- spec/integration/riak/http_backends_spec.rbc
|
722
1341
|
- spec/integration/riak/node_spec.rb
|
1342
|
+
- spec/integration/riak/node_spec.rbc
|
723
1343
|
- spec/integration/riak/protobuffs_backends_spec.rb
|
1344
|
+
- spec/integration/riak/protobuffs_backends_spec.rbc
|
724
1345
|
- spec/integration/riak/test_server_spec.rb
|
1346
|
+
- spec/integration/riak/test_server_spec.rbc
|
725
1347
|
- spec/integration/riak/threading_spec.rb
|
1348
|
+
- spec/integration/riak/threading_spec.rbc
|
726
1349
|
- spec/riak/beefcake_protobuffs_backend/object_methods_spec.rb
|
1350
|
+
- spec/riak/beefcake_protobuffs_backend/object_methods_spec.rbc
|
727
1351
|
- spec/riak/beefcake_protobuffs_backend_spec.rb
|
1352
|
+
- spec/riak/beefcake_protobuffs_backend_spec.rbc
|
728
1353
|
- spec/riak/bucket_spec.rb
|
1354
|
+
- spec/riak/bucket_spec.rbc
|
729
1355
|
- spec/riak/client_spec.rb
|
1356
|
+
- spec/riak/client_spec.rbc
|
730
1357
|
- spec/riak/core_ext/to_param_spec.rb
|
1358
|
+
- spec/riak/core_ext/to_param_spec.rbc
|
731
1359
|
- spec/riak/escape_spec.rb
|
1360
|
+
- spec/riak/escape_spec.rbc
|
732
1361
|
- spec/riak/excon_backend_spec.rb
|
1362
|
+
- spec/riak/excon_backend_spec.rbc
|
733
1363
|
- spec/riak/headers_spec.rb
|
1364
|
+
- spec/riak/headers_spec.rbc
|
734
1365
|
- spec/riak/http_backend/configuration_spec.rb
|
1366
|
+
- spec/riak/http_backend/configuration_spec.rbc
|
735
1367
|
- spec/riak/http_backend/object_methods_spec.rb
|
1368
|
+
- spec/riak/http_backend/object_methods_spec.rbc
|
736
1369
|
- spec/riak/http_backend/transport_methods_spec.rb
|
1370
|
+
- spec/riak/http_backend/transport_methods_spec.rbc
|
737
1371
|
- spec/riak/http_backend_spec.rb
|
1372
|
+
- spec/riak/http_backend_spec.rbc
|
738
1373
|
- spec/riak/link_spec.rb
|
1374
|
+
- spec/riak/link_spec.rbc
|
739
1375
|
- spec/riak/map_reduce/filter_builder_spec.rb
|
1376
|
+
- spec/riak/map_reduce/filter_builder_spec.rbc
|
740
1377
|
- spec/riak/map_reduce/phase_spec.rb
|
1378
|
+
- spec/riak/map_reduce/phase_spec.rbc
|
741
1379
|
- spec/riak/map_reduce_spec.rb
|
1380
|
+
- spec/riak/map_reduce_spec.rbc
|
742
1381
|
- spec/riak/multipart_spec.rb
|
1382
|
+
- spec/riak/multipart_spec.rbc
|
743
1383
|
- spec/riak/net_http_backend_spec.rb
|
1384
|
+
- spec/riak/net_http_backend_spec.rbc
|
744
1385
|
- spec/riak/node_spec.rb
|
1386
|
+
- spec/riak/node_spec.rbc
|
745
1387
|
- spec/riak/pool_spec.rb
|
1388
|
+
- spec/riak/pool_spec.rbc
|
746
1389
|
- spec/riak/robject_spec.rb
|
1390
|
+
- spec/riak/robject_spec.rbc
|
747
1391
|
- spec/riak/search_spec.rb
|
1392
|
+
- spec/riak/search_spec.rbc
|
748
1393
|
- spec/riak/serializers_spec.rb
|
1394
|
+
- spec/riak/serializers_spec.rbc
|
749
1395
|
- spec/riak/stamp_spec.rb
|
1396
|
+
- spec/riak/stamp_spec.rbc
|
750
1397
|
- spec/riak/stream_parser_spec.rb
|
1398
|
+
- spec/riak/stream_parser_spec.rbc
|
751
1399
|
- spec/riak/walk_spec_spec.rb
|
1400
|
+
- spec/riak/walk_spec_spec.rbc
|
752
1401
|
- spec/spec_helper.rb
|
1402
|
+
- spec/spec_helper.rbc
|
753
1403
|
- spec/support/drb_mock_server.rb
|
1404
|
+
- spec/support/drb_mock_server.rbc
|
754
1405
|
- spec/support/http_backend_implementation_examples.rb
|
1406
|
+
- spec/support/http_backend_implementation_examples.rbc
|
755
1407
|
- spec/support/integration_setup.rb
|
1408
|
+
- spec/support/integration_setup.rbc
|
756
1409
|
- spec/support/mock_server.rb
|
1410
|
+
- spec/support/mock_server.rbc
|
757
1411
|
- spec/support/mocks.rb
|
1412
|
+
- spec/support/mocks.rbc
|
758
1413
|
- spec/support/sometimes.rb
|
1414
|
+
- spec/support/sometimes.rbc
|
759
1415
|
- spec/support/test_server.rb
|
1416
|
+
- spec/support/test_server.rbc
|
760
1417
|
- spec/support/test_server.yml.example
|
761
1418
|
- spec/support/unified_backend_examples.rb
|
1419
|
+
- spec/support/unified_backend_examples.rbc
|
762
1420
|
- spec/support/version_filter.rb
|
1421
|
+
- spec/support/version_filter.rbc
|
763
1422
|
- .gitignore
|