riak-client 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,23 @@
1
1
  # Riak Ruby Client Release Notes
2
2
 
3
+ ## 1.0.2 Repackaging - 2012-04-02
4
+
5
+ Release 1.0.2 relaxes the multi_json dependency so that the client
6
+ will function with Rails 3.2. Version 1.0.1 was yanked.
7
+
8
+ ## 1.0.1 Patch/Bugfix Release - 2012-04-02
9
+
10
+ Release 1.0.1 is a minor bugfix/patch release. Included in this
11
+ release are:
12
+
13
+ * I18n messages now include the French locale. [Eric Cestari]
14
+ * SSL configuration should work again. [Adam Hunter]
15
+ * The version comparison when checking Excon compatibility should now
16
+ handle large version numbers correctly. [Srdjan Pejic]
17
+ * There is now a spec to verify that the `riak_kv` `add_paths` setting
18
+ is not clobbered by the `Riak::TestServer` when adding the location
19
+ of the test backend code.
20
+
3
21
  ## 1.0.0 Feature Release - 2012-02-03
4
22
 
5
23
  Release 1.0.0 is a major feature release and is the first where
@@ -76,6 +76,7 @@ module Riak
76
76
  # If no nodes are given, a single node is constructed from the remaining
77
77
  # options given to Client.new.
78
78
  # @option options [String] :host ('127.0.0.1') The host or IP address for the Riak endpoint
79
+ # @option options [String] :protocol ('http') The protocol to use for connecting to a node backend
79
80
  # @option options [Fixnum] :http_port (8098) The port of the Riak HTTP endpoint
80
81
  # @option options [Fixnum] :pb_port (8087) The port of the Riak Protocol Buffers endpoint
81
82
  # @option options [String] :prefix ('/riak/') The URL path prefix to the main HTTP endpoint
@@ -83,6 +84,7 @@ module Riak
83
84
  # @option options [Fixnum, String] :client_id (rand(MAX_CLIENT_ID)) The internal client ID used by Riak to route responses
84
85
  # @option options [String, Symbol] :http_backend (:NetHTTP) which HTTP backend to use
85
86
  # @option options [String, Symbol] :protobuffs_backend (:Beefcake) which Protocol Buffers backend to use
87
+ # @option options [Boolean, Hash] :ssl (nil) The SSL options to pass to each node or true for default options
86
88
  # @raise [ArgumentError] raised if any invalid options are given
87
89
  def initialize(options={})
88
90
  if options.include? :port
@@ -114,6 +116,7 @@ module Riak
114
116
  self.http_backend = options[:http_backend] || :NetHTTP
115
117
  self.protobuffs_backend = options[:protobuffs_backend] || :Beefcake
116
118
  self.client_id = options[:client_id] if options[:client_id]
119
+ self.ssl = options[:ssl] if options[:ssl]
117
120
  end
118
121
 
119
122
  # Yields a backend for operations that are protocol-independent.
@@ -391,20 +394,22 @@ module Riak
391
394
  raise ArgumentError, t("protocol_invalid", :invalid => value, :valid => PROTOCOLS.join(', '))
392
395
  end
393
396
 
397
+ #TODO
398
+ @backend = nil
399
+ @protocol = value
400
+
394
401
  case value
395
402
  when 'https'
396
403
  nodes.each do |node|
397
- node.ssl_options ||= {}
404
+ node.ssl = true unless node.ssl_enabled?
398
405
  end
399
406
  when 'http'
400
407
  nodes.each do |node|
401
- node.ssl_options = nil
408
+ node.ssl = false
402
409
  end
403
410
  end
404
411
 
405
- #TODO
406
- @backend = nil
407
- @protocol = value
412
+ @protocol
408
413
  end
409
414
 
410
415
  # Takes a pool. Acquires a backend from the pool and yields it with
@@ -467,12 +472,6 @@ module Riak
467
472
  @nodes.each do |node|
468
473
  node.ssl = value
469
474
  end
470
-
471
- if value
472
- @protocol = 'https'
473
- else
474
- @protocol = 'http'
475
- end
476
475
  value
477
476
  end
478
477
 
@@ -13,7 +13,7 @@ module Riak
13
13
  require 'excon'
14
14
  Client::NETWORK_ERRORS << Excon::Errors::SocketError
15
15
  Client::NETWORK_ERRORS.uniq!
16
- Excon::VERSION >= "0.5.7" && patch_excon
16
+ Gem::Version.new(Excon::VERSION) >= Gem::Version.new("0.5.7") && patch_excon
17
17
  rescue LoadError
18
18
  false
19
19
  end
@@ -85,11 +85,18 @@ module Riak
85
85
 
86
86
  # Checks if SSL is enabled for HTTP
87
87
  def ssl_enabled?
88
- @client.protocol == 'https' || @ssl_options.present?
88
+ @client.protocol == 'https' && @ssl_options.present?
89
89
  end
90
90
 
91
+ def inspect
92
+ "<#Node #{@host}:#{@http_port}:#{@pb_port}>"
93
+ end
94
+
95
+ protected
96
+
97
+
91
98
  def ssl_enable
92
- @client.protocol = 'https'
99
+ @client.protocol = 'https' unless @client.protocol == 'https'
93
100
  @ssl_options[:pem] = File.read(@ssl_options[:pem_file]) if @ssl_options[:pem_file]
94
101
  @ssl_options[:verify_mode] ||= "peer" if @ssl_options.stringify_keys.any? {|k,v| %w[pem ca_file ca_path].include?(k)}
95
102
  @ssl_options[:verify_mode] ||= "none"
@@ -99,13 +106,10 @@ module Riak
99
106
  end
100
107
 
101
108
  def ssl_disable
102
- @client.protocol = 'http'
109
+ @client.protocol = 'http' unless @client.protocol == 'http'
103
110
  @ssl_options = nil
104
111
  end
105
112
 
106
- def inspect
107
- "<#Node #{@host}:#{@http_port}:#{@pb_port}>"
108
- end
109
113
  end
110
114
  end
111
115
  end
@@ -1,3 +1,5 @@
1
1
  require 'i18n'
2
2
 
3
- I18n.load_path << File.expand_path("../locale/en.yml", __FILE__)
3
+ Dir.glob(File.expand_path("../locale/*.yml", __FILE__)).each do |locale_file|
4
+ I18n.load_path << locale_file
5
+ end
@@ -0,0 +1,52 @@
1
+ fr:
2
+ riak:
3
+ backwards_clock: "L'horloge système a reculé. La génération des ID échouera pour les %{delay} millisecondes à venir."
4
+ bucket_link_conversion: "Ne peut convertir un lien de bucket vers un walk spec"
5
+ client_type: "argument invalide : %{client} n'est pas un Riak::Client"
6
+ conflict_resolver_invalid: "Le résolveur (%{resolver}) n'a pas répondu à :call"
7
+ content_type_undefined: "content_type n'est pas défini !"
8
+ deprecated:
9
+ port: "DEPRECATION: Riak::Client#port ne doit plus être utilisé (deprecated), utilisez #http_port ou #pb_port pour spécifier le protocol.\n%{backtrace}"
10
+ search: "DEPRECATION: Les fonctionnalités Riak Search sont désormais inclues dans le client principal. Vous n'avez plus besoin d'inclure 'riak/search'.\n%{backtrace}"
11
+ empty_map_reduce_query: "Spécifiez une ou plusieurs requêtes pour MapReduce."
12
+ failed_request: "La requête client a échouée."
13
+ filter_needs_block: "Le filtre %{filter} nécessite un bloc."
14
+ filter_arity_mismatch: "Le filtre %{filter} nécessite %{expected} arguments. Seulement %{received} ont été fournis."
15
+ full_bucket_mapred: "Les MapReduce sur un bucket complet, y compris les filtres de clé, invoque 'list-keys' qui est une opération coûteuse et ne doit pas être utilisée en production.\n %{backtrace}"
16
+ hash_type: "argument invalide : %{hash} n'est pas un Hash"
17
+ http_configuration: "Le moteur HTTP %{backend} ne peut être utilisé. Merci de vérifier ses dépendances et/ou sa configuration."
18
+ http_failed_request: "%{expected} attendu depuis Riak mais %{code} reçu. %{body}"
19
+ hostname_invalid: "host doit être un nom d'hôte valide"
20
+ protocol_invalid: "'%{invalid}' n'est pas un protocole valide. Les valeurs possibles sont %{valid}"
21
+ invalid_basic_auth: "L'authentification basique doit être utilisée comme ceci : 'user:pass'"
22
+ invalid_client_id: "ID client invalide, doit être une chaîne ou un entier entre 0 et %{max_id}"
23
+ invalid_io_object: "Object de type IO invalide assigné à RObject#data. Il devrait plutôt être assigné à raw_data"
24
+ invalid_function_value: "Valeur invalide pour la fonction : %{value}"
25
+ invalid_options: "Options de configuration invalides."
26
+ invalid_phase_type: "type doit être :map, :reduce, ou :link"
27
+ invalid_ssl_verify_mode: "%{invalid} n'est pas une option :verify_mode valide pour SSL. Les options valides sont 'peer' and 'none'."
28
+ invalid_index_query: "%{value} n'est pas un term de requête valide. Seules les String, Integer et Range de ces types sont autorisés"
29
+ indexes_unsupported: "Le serveur Riak ne supporte pas les index secondaires."
30
+ loading_bucket: "pendant le chargement du bucket '%{name}'"
31
+ list_buckets: "Riak::Client#buckets est une opération coûteuse et ne doit pas être utilisée en production.\n %{backtrace}"
32
+ list_keys: "Riak::Bucket#keys est une opération coûteuse et ne doit pas être utilisée en production.\n %{backtrace}"
33
+ luwak_unsupported: "Le serveur Riak ne supporte pas Luwak. Activez-le dans app.config avant de l'utiliser"
34
+ missing_block: "Un bloc doit être fourni."
35
+ missing_host_and_port: "Vous devez spécifier un hôte et un port, utiliser la valeur par défaut : 127.0.0.1:8098"
36
+ module_function_pair_required: "la fonction doit avoir deux élément lorsqu'elle est définie par un tableau"
37
+ not_found: "L'objet demandé n'a pas été trouvé."
38
+ no_pipes: "Ne peut trouver ou ne peut ouvrir un pipe pour la console Riak dans %{path}."
39
+ port_invalid: "le port doit être un entier entre 0 et 65535"
40
+ protobuffs_failed_request: "Riak a retourné le code d'erreur %{code} au lieu d'une réponse réussie. %{body}"
41
+ request_body_type: "Le corps de la requête doit être une chaine ou répondre à :read."
42
+ search_unsupported: "Le serveur Riak ne supporte pas la recherche."
43
+ search_docs_require_id: "Search index documents must include the 'id' field."
44
+ search_remove_requires_id_or_query: "Les documents d'index de recherche doivent avoir des clés 'id' ou 'query'"
45
+ serializer_not_implemented: "Aucun sérialiseur n'a été défini pour le type de contenu %{content_type}"
46
+ source_and_root_required: "La configuration de Riak::Node configuration doit inclure les clés :source and :root."
47
+ stale_write_prevented: "Le client a empêché une écriture périmée."
48
+ stored_function_invalid: "Une fonction définie par un hash doit avoir :bucket et :key"
49
+ string_type: "invalid_argument %{string} n'est pas une String"
50
+ too_few_arguments: "pas assez d'arguments : %{params}"
51
+ walk_spec_invalid_unless_link: "Le WalkSpec n'est valide pour une fonction que lorsque le type est :link"
52
+ wrong_argument_count_walk_spec: "nombre d'argument invalide (un Hash ou bucket,tag,keep requis)"
@@ -1,3 +1,3 @@
1
1
  module Riak
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -20,7 +20,7 @@ Gem::Specification.new do |gem|
20
20
  gem.add_runtime_dependency "i18n", ">=0.4.0"
21
21
  gem.add_runtime_dependency "builder", ">= 2.1.2"
22
22
  gem.add_runtime_dependency "beefcake", "~>0.3.7"
23
- gem.add_runtime_dependency "multi_json", "~>1.0.0"
23
+ gem.add_runtime_dependency "multi_json", "~>1.0"
24
24
 
25
25
  # Files
26
26
  ignores = File.read(".gitignore").split(/\r?\n/).reject{ |f| f =~ /^(#.+|\s*)$/ }.map {|f| Dir[f] }.flatten
@@ -2,7 +2,7 @@ require 'spec_helper'
2
2
  require 'riak/test_server'
3
3
 
4
4
  describe Riak::TestServer do
5
- subject { $test_server }
5
+ subject { test_server }
6
6
  let(:app_config) { (subject.etc + 'app.config').read }
7
7
 
8
8
  it "should add the test backends to the code path" do
@@ -36,4 +36,16 @@ describe Riak::TestServer do
36
36
  client['test_bucket']['test_item']
37
37
  }.to raise_error(Riak::FailedRequest)
38
38
  end
39
+
40
+ it "should not clobber user-specified paths in riak_kv/add_paths [seancribbs/ripple #256]", :test_server => false do
41
+ # clean up the existing directory so the config is not overwritten
42
+ test_server.send(:delete)
43
+ config = {
44
+ :root => subject.root,
45
+ :source => subject.source,
46
+ :env => {:riak_kv => {:add_paths => ["app/mapreduce/erlang"]}}
47
+ }
48
+ ts = described_class.new(config)
49
+ ts.env[:riak_kv][:add_paths].should include("app/mapreduce/erlang")
50
+ end
39
51
  end
@@ -299,17 +299,38 @@ describe Riak::Client do
299
299
  @client = Riak::Client.new
300
300
  end
301
301
 
302
+ it "should enable ssl when passed to the initializer" do
303
+ client = Riak::Client.new(:ssl => true)
304
+ client.nodes.first.ssl_options.should be_a(Hash)
305
+ client.nodes.first.ssl_options.should_not be_empty
306
+ end
307
+
302
308
  it "should allow passing ssl options into the initializer" do
303
- lambda { client = Riak::Client.new(:ssl => {:verify_mode => "peer"}) }.should_not raise_error
309
+ client = Riak::Client.new(:ssl => {:verify_mode => "peer"})
310
+ client.nodes.first.ssl_options.should be_a(Hash)
311
+ client.nodes.first.ssl_options[:verify_mode].should eq("peer")
304
312
  end
305
313
 
306
- it "should not have ssl options by default" do
307
- @client.nodes.first.ssl_options.should be_nil
314
+ it "should enable ssl options when initializing the client with https but not setting any ssl options" do
315
+ client = Riak::Client.new(:protocol => 'https')
316
+ client.nodes.first.ssl_options.should be_a(Hash)
317
+ client.nodes.first.ssl_options.should_not be_empty
318
+ end
319
+
320
+ it "should allow setting ssl options and specifying the https protocol" do
321
+ client = Riak::Client.new(:protocol => 'https', :ssl => {:verify_mode => 'peer'})
322
+ client.nodes.first.ssl_options.should be_a(Hash)
323
+ client.nodes.first.ssl_options[:verify_mode].should eq("peer")
308
324
  end
309
325
 
310
- it "should have a blank hash for ssl options if the protocol is set to https" do
326
+ it "should enable ssl options when setting the protocol to https but not setting any ssl options" do
311
327
  @client.protocol = 'https'
312
328
  @client.nodes.first.ssl_options.should be_a(Hash)
329
+ @client.nodes.first.ssl_options.should_not be_empty
330
+ end
331
+
332
+ it "should not have ssl options by default" do
333
+ @client.nodes.first.ssl_options.should be_nil
313
334
  end
314
335
 
315
336
  # The api should have an ssl= method for setting up all of the ssl
@@ -25,7 +25,7 @@ else
25
25
  before :each do
26
26
  @client = Riak::Client.new(:http_port => $mock_server.port, :http_backend => :Excon) # Point to our mock
27
27
  @node = @client.node
28
- @backend = @client.new_http_backend
28
+ @backend = @client.new_http_backend if described_class.configured?
29
29
  @_mock_set = false
30
30
  end
31
31
 
@@ -60,6 +60,38 @@ else
60
60
  $mock_server.satisfied.should be_true
61
61
  end.should_not raise_error
62
62
  end
63
- end
64
63
 
64
+ context "checking the Excon Gem version" do
65
+ subject { described_class }
66
+
67
+ def suppress_warnings
68
+ original_verbosity = $VERBOSE
69
+ $VERBOSE = nil
70
+ result = yield
71
+ $VERBOSE = original_verbosity
72
+ return result
73
+ end
74
+
75
+ def set_excon_version(v)
76
+ original_version = Excon::VERSION
77
+ suppress_warnings { Excon.const_set(:VERSION, v) }
78
+ yield
79
+ suppress_warnings {Excon.const_set(:VERSION, original_version)}
80
+ end
81
+
82
+ context "when it meets the minimum requirement" do
83
+ it { should be_configured }
84
+
85
+ context "and has a version number that is not *lexically* greater than the minimum version" do
86
+ around {|ex| set_excon_version("0.13.2", &ex) }
87
+ it { should be_configured }
88
+ end
89
+ end
90
+
91
+ context "when it does not meet the minimum requirement" do
92
+ around {|ex| set_excon_version("0.5.6", &ex) }
93
+ it { should_not be_configured }
94
+ end
95
+ end
96
+ end
65
97
  end
metadata CHANGED
@@ -1,172 +1,169 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: riak-client
3
- version: !ruby/object:Gem::Version
4
- hash: 23
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.2
5
5
  prerelease:
6
- segments:
7
- - 1
8
- - 0
9
- - 0
10
- version: 1.0.0
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Sean Cribbs
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2012-02-03 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2012-04-02 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: rspec
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
24
17
  none: false
25
- requirements:
18
+ requirements:
26
19
  - - ~>
27
- - !ruby/object:Gem::Version
28
- hash: 47
29
- segments:
30
- - 2
31
- - 8
32
- - 0
20
+ - !ruby/object:Gem::Version
33
21
  version: 2.8.0
34
22
  type: :development
35
- version_requirements: *id001
36
- - !ruby/object:Gem::Dependency
37
- name: fakeweb
38
23
  prerelease: false
39
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: !ruby/object:Gem::Requirement
40
25
  none: false
41
- requirements:
42
- - - ">="
43
- - !ruby/object:Gem::Version
44
- hash: 11
45
- segments:
46
- - 1
47
- - 2
48
- version: "1.2"
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 2.8.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: fakeweb
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '1.2'
49
38
  type: :development
50
- version_requirements: *id002
51
- - !ruby/object:Gem::Dependency
52
- name: rack
53
39
  prerelease: false
54
- requirement: &id003 !ruby/object:Gem::Requirement
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '1.2'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rack
48
+ requirement: !ruby/object:Gem::Requirement
55
49
  none: false
56
- requirements:
57
- - - ">="
58
- - !ruby/object:Gem::Version
59
- hash: 15
60
- segments:
61
- - 1
62
- - 0
63
- version: "1.0"
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '1.0'
64
54
  type: :development
65
- version_requirements: *id003
66
- - !ruby/object:Gem::Dependency
67
- name: excon
68
55
  prerelease: false
69
- requirement: &id004 !ruby/object:Gem::Requirement
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '1.0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: excon
64
+ requirement: !ruby/object:Gem::Requirement
70
65
  none: false
71
- requirements:
66
+ requirements:
72
67
  - - ~>
73
- - !ruby/object:Gem::Version
74
- hash: 5
75
- segments:
76
- - 0
77
- - 6
78
- - 1
68
+ - !ruby/object:Gem::Version
79
69
  version: 0.6.1
80
70
  type: :development
81
- version_requirements: *id004
82
- - !ruby/object:Gem::Dependency
83
- name: rake
84
71
  prerelease: false
85
- requirement: &id005 !ruby/object:Gem::Requirement
72
+ version_requirements: !ruby/object:Gem::Requirement
86
73
  none: false
87
- requirements:
88
- - - ">="
89
- - !ruby/object:Gem::Version
90
- hash: 3
91
- segments:
92
- - 0
93
- version: "0"
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 0.6.1
78
+ - !ruby/object:Gem::Dependency
79
+ name: rake
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
94
86
  type: :development
95
- version_requirements: *id005
96
- - !ruby/object:Gem::Dependency
97
- name: i18n
98
87
  prerelease: false
99
- requirement: &id006 !ruby/object:Gem::Requirement
88
+ version_requirements: !ruby/object:Gem::Requirement
100
89
  none: false
101
- requirements:
102
- - - ">="
103
- - !ruby/object:Gem::Version
104
- hash: 15
105
- segments:
106
- - 0
107
- - 4
108
- - 0
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: i18n
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
109
101
  version: 0.4.0
110
102
  type: :runtime
111
- version_requirements: *id006
112
- - !ruby/object:Gem::Dependency
113
- name: builder
114
103
  prerelease: false
115
- requirement: &id007 !ruby/object:Gem::Requirement
104
+ version_requirements: !ruby/object:Gem::Requirement
116
105
  none: false
117
- requirements:
118
- - - ">="
119
- - !ruby/object:Gem::Version
120
- hash: 15
121
- segments:
122
- - 2
123
- - 1
124
- - 2
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: 0.4.0
110
+ - !ruby/object:Gem::Dependency
111
+ name: builder
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
125
117
  version: 2.1.2
126
118
  type: :runtime
127
- version_requirements: *id007
128
- - !ruby/object:Gem::Dependency
129
- name: beefcake
130
119
  prerelease: false
131
- requirement: &id008 !ruby/object:Gem::Requirement
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: 2.1.2
126
+ - !ruby/object:Gem::Dependency
127
+ name: beefcake
128
+ requirement: !ruby/object:Gem::Requirement
132
129
  none: false
133
- requirements:
130
+ requirements:
134
131
  - - ~>
135
- - !ruby/object:Gem::Version
136
- hash: 29
137
- segments:
138
- - 0
139
- - 3
140
- - 7
132
+ - !ruby/object:Gem::Version
141
133
  version: 0.3.7
142
134
  type: :runtime
143
- version_requirements: *id008
144
- - !ruby/object:Gem::Dependency
145
- name: multi_json
146
135
  prerelease: false
147
- requirement: &id009 !ruby/object:Gem::Requirement
136
+ version_requirements: !ruby/object:Gem::Requirement
148
137
  none: false
149
- requirements:
138
+ requirements:
150
139
  - - ~>
151
- - !ruby/object:Gem::Version
152
- hash: 23
153
- segments:
154
- - 1
155
- - 0
156
- - 0
157
- version: 1.0.0
140
+ - !ruby/object:Gem::Version
141
+ version: 0.3.7
142
+ - !ruby/object:Gem::Dependency
143
+ name: multi_json
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ~>
148
+ - !ruby/object:Gem::Version
149
+ version: '1.0'
158
150
  type: :runtime
159
- version_requirements: *id009
160
- description: riak-client is a rich client for Riak, the distributed database by Basho. It supports the full HTTP and Protocol Buffers interfaces including storage operations, bucket configuration, link-walking, secondary indexes and map-reduce.
161
- email:
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ~>
156
+ - !ruby/object:Gem::Version
157
+ version: '1.0'
158
+ description: riak-client is a rich client for Riak, the distributed database by Basho.
159
+ It supports the full HTTP and Protocol Buffers interfaces including storage operations,
160
+ bucket configuration, link-walking, secondary indexes and map-reduce.
161
+ email:
162
162
  - sean@basho.com
163
163
  executables: []
164
-
165
164
  extensions: []
166
-
167
165
  extra_rdoc_files: []
168
-
169
- files:
166
+ files:
170
167
  - erl_src/riak_kv_test014_backend.beam
171
168
  - erl_src/riak_kv_test014_backend.erl
172
169
  - erl_src/riak_kv_test_backend.beam
@@ -210,6 +207,7 @@ files:
210
207
  - lib/riak/json.rb
211
208
  - lib/riak/link.rb
212
209
  - lib/riak/locale/en.yml
210
+ - lib/riak/locale/fr.yml
213
211
  - lib/riak/map_reduce/filter_builder.rb
214
212
  - lib/riak/map_reduce/phase.rb
215
213
  - lib/riak/map_reduce.rb
@@ -238,6 +236,394 @@ files:
238
236
  - lib/riak/walk_spec.rb
239
237
  - lib/riak.rb
240
238
  - LICENSE
239
+ - pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.beam
240
+ - pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.erl
241
+ - pkg/riak-client-1.0.0/erl_src/riak_kv_test_backend.beam
242
+ - pkg/riak-client-1.0.0/erl_src/riak_kv_test_backend.erl
243
+ - pkg/riak-client-1.0.0/erl_src/riak_search_test_backend.beam
244
+ - pkg/riak-client-1.0.0/erl_src/riak_search_test_backend.erl
245
+ - pkg/riak-client-1.0.0/Gemfile
246
+ - pkg/riak-client-1.0.0/Guardfile
247
+ - pkg/riak-client-1.0.0/lib/riak/bucket.rb
248
+ - pkg/riak-client-1.0.0/lib/riak/client/#http_backend.rb#
249
+ - pkg/riak-client-1.0.0/lib/riak/client/beefcake/messages.rb
250
+ - pkg/riak-client-1.0.0/lib/riak/client/beefcake/object_methods.rb
251
+ - pkg/riak-client-1.0.0/lib/riak/client/beefcake_protobuffs_backend.rb
252
+ - pkg/riak-client-1.0.0/lib/riak/client/decaying.rb
253
+ - pkg/riak-client-1.0.0/lib/riak/client/excon_backend.rb
254
+ - pkg/riak-client-1.0.0/lib/riak/client/http_backend/configuration.rb
255
+ - pkg/riak-client-1.0.0/lib/riak/client/http_backend/key_streamer.rb
256
+ - pkg/riak-client-1.0.0/lib/riak/client/http_backend/object_methods.rb
257
+ - pkg/riak-client-1.0.0/lib/riak/client/http_backend/request_headers.rb
258
+ - pkg/riak-client-1.0.0/lib/riak/client/http_backend/transport_methods.rb
259
+ - pkg/riak-client-1.0.0/lib/riak/client/http_backend.rb
260
+ - pkg/riak-client-1.0.0/lib/riak/client/net_http_backend.rb
261
+ - pkg/riak-client-1.0.0/lib/riak/client/node.rb
262
+ - pkg/riak-client-1.0.0/lib/riak/client/pool.rb
263
+ - pkg/riak-client-1.0.0/lib/riak/client/protobuffs_backend.rb
264
+ - pkg/riak-client-1.0.0/lib/riak/client/search.rb
265
+ - pkg/riak-client-1.0.0/lib/riak/client.rb
266
+ - pkg/riak-client-1.0.0/lib/riak/cluster.rb
267
+ - pkg/riak-client-1.0.0/lib/riak/core_ext/blank.rb
268
+ - pkg/riak-client-1.0.0/lib/riak/core_ext/deep_dup.rb
269
+ - pkg/riak-client-1.0.0/lib/riak/core_ext/extract_options.rb
270
+ - pkg/riak-client-1.0.0/lib/riak/core_ext/json.rb
271
+ - pkg/riak-client-1.0.0/lib/riak/core_ext/slice.rb
272
+ - pkg/riak-client-1.0.0/lib/riak/core_ext/stringify_keys.rb
273
+ - pkg/riak-client-1.0.0/lib/riak/core_ext/symbolize_keys.rb
274
+ - pkg/riak-client-1.0.0/lib/riak/core_ext/to_param.rb
275
+ - pkg/riak-client-1.0.0/lib/riak/core_ext.rb
276
+ - pkg/riak-client-1.0.0/lib/riak/encoding.rb
277
+ - pkg/riak-client-1.0.0/lib/riak/failed_request.rb
278
+ - pkg/riak-client-1.0.0/lib/riak/i18n.rb
279
+ - pkg/riak-client-1.0.0/lib/riak/json.rb
280
+ - pkg/riak-client-1.0.0/lib/riak/link.rb
281
+ - pkg/riak-client-1.0.0/lib/riak/locale/en.yml
282
+ - pkg/riak-client-1.0.0/lib/riak/map_reduce/filter_builder.rb
283
+ - pkg/riak-client-1.0.0/lib/riak/map_reduce/phase.rb
284
+ - pkg/riak-client-1.0.0/lib/riak/map_reduce.rb
285
+ - pkg/riak-client-1.0.0/lib/riak/map_reduce_error.rb
286
+ - pkg/riak-client-1.0.0/lib/riak/node/#console.rb#
287
+ - pkg/riak-client-1.0.0/lib/riak/node/configuration.rb
288
+ - pkg/riak-client-1.0.0/lib/riak/node/console.rb
289
+ - pkg/riak-client-1.0.0/lib/riak/node/control.rb
290
+ - pkg/riak-client-1.0.0/lib/riak/node/defaults.rb
291
+ - pkg/riak-client-1.0.0/lib/riak/node/generation.rb
292
+ - pkg/riak-client-1.0.0/lib/riak/node/log.rb
293
+ - pkg/riak-client-1.0.0/lib/riak/node/version.rb
294
+ - pkg/riak-client-1.0.0/lib/riak/node.rb
295
+ - pkg/riak-client-1.0.0/lib/riak/robject.rb
296
+ - pkg/riak-client-1.0.0/lib/riak/search.rb
297
+ - pkg/riak-client-1.0.0/lib/riak/serializers.rb
298
+ - pkg/riak-client-1.0.0/lib/riak/stamp.rb
299
+ - pkg/riak-client-1.0.0/lib/riak/test_server.rb
300
+ - pkg/riak-client-1.0.0/lib/riak/util/escape.rb
301
+ - pkg/riak-client-1.0.0/lib/riak/util/headers.rb
302
+ - pkg/riak-client-1.0.0/lib/riak/util/multipart/stream_parser.rb
303
+ - pkg/riak-client-1.0.0/lib/riak/util/multipart.rb
304
+ - pkg/riak-client-1.0.0/lib/riak/util/tcp_socket_extensions.rb
305
+ - pkg/riak-client-1.0.0/lib/riak/util/translation.rb
306
+ - pkg/riak-client-1.0.0/lib/riak/version.rb
307
+ - pkg/riak-client-1.0.0/lib/riak/walk_spec.rb
308
+ - pkg/riak-client-1.0.0/lib/riak.rb
309
+ - pkg/riak-client-1.0.0/LICENSE
310
+ - pkg/riak-client-1.0.0/Rakefile
311
+ - pkg/riak-client-1.0.0/README.markdown
312
+ - pkg/riak-client-1.0.0/RELEASE_NOTES.md
313
+ - pkg/riak-client-1.0.0/riak-client.gemspec
314
+ - pkg/riak-client-1.0.0/spec/failover/failover.rb
315
+ - pkg/riak-client-1.0.0/spec/fixtures/cat.jpg
316
+ - pkg/riak-client-1.0.0/spec/fixtures/multipart-blank.txt
317
+ - pkg/riak-client-1.0.0/spec/fixtures/multipart-mapreduce.txt
318
+ - pkg/riak-client-1.0.0/spec/fixtures/multipart-with-body.txt
319
+ - pkg/riak-client-1.0.0/spec/fixtures/multipart-with-marked-tombstones.txt
320
+ - pkg/riak-client-1.0.0/spec/fixtures/multipart-with-unmarked-tombstone.txt
321
+ - pkg/riak-client-1.0.0/spec/fixtures/server.cert.crt
322
+ - pkg/riak-client-1.0.0/spec/fixtures/server.cert.key
323
+ - pkg/riak-client-1.0.0/spec/fixtures/test.pem
324
+ - pkg/riak-client-1.0.0/spec/integration/riak/cluster_spec.rb
325
+ - pkg/riak-client-1.0.0/spec/integration/riak/http_backends_spec.rb
326
+ - pkg/riak-client-1.0.0/spec/integration/riak/node_spec.rb
327
+ - pkg/riak-client-1.0.0/spec/integration/riak/protobuffs_backends_spec.rb
328
+ - pkg/riak-client-1.0.0/spec/integration/riak/test_server_spec.rb
329
+ - pkg/riak-client-1.0.0/spec/integration/riak/threading_spec.rb
330
+ - pkg/riak-client-1.0.0/spec/riak/beefcake_protobuffs_backend/object_methods_spec.rb
331
+ - pkg/riak-client-1.0.0/spec/riak/beefcake_protobuffs_backend_spec.rb
332
+ - pkg/riak-client-1.0.0/spec/riak/bucket_spec.rb
333
+ - pkg/riak-client-1.0.0/spec/riak/client_spec.rb
334
+ - pkg/riak-client-1.0.0/spec/riak/core_ext/to_param_spec.rb
335
+ - pkg/riak-client-1.0.0/spec/riak/escape_spec.rb
336
+ - pkg/riak-client-1.0.0/spec/riak/excon_backend_spec.rb
337
+ - pkg/riak-client-1.0.0/spec/riak/headers_spec.rb
338
+ - pkg/riak-client-1.0.0/spec/riak/http_backend/configuration_spec.rb
339
+ - pkg/riak-client-1.0.0/spec/riak/http_backend/object_methods_spec.rb
340
+ - pkg/riak-client-1.0.0/spec/riak/http_backend/transport_methods_spec.rb
341
+ - pkg/riak-client-1.0.0/spec/riak/http_backend_spec.rb
342
+ - pkg/riak-client-1.0.0/spec/riak/link_spec.rb
343
+ - pkg/riak-client-1.0.0/spec/riak/map_reduce/filter_builder_spec.rb
344
+ - pkg/riak-client-1.0.0/spec/riak/map_reduce/phase_spec.rb
345
+ - pkg/riak-client-1.0.0/spec/riak/map_reduce_spec.rb
346
+ - pkg/riak-client-1.0.0/spec/riak/multipart_spec.rb
347
+ - pkg/riak-client-1.0.0/spec/riak/net_http_backend_spec.rb
348
+ - pkg/riak-client-1.0.0/spec/riak/node_spec.rb
349
+ - pkg/riak-client-1.0.0/spec/riak/pool_spec.rb
350
+ - pkg/riak-client-1.0.0/spec/riak/robject_spec.rb
351
+ - pkg/riak-client-1.0.0/spec/riak/search_spec.rb
352
+ - pkg/riak-client-1.0.0/spec/riak/serializers_spec.rb
353
+ - pkg/riak-client-1.0.0/spec/riak/stamp_spec.rb
354
+ - pkg/riak-client-1.0.0/spec/riak/stream_parser_spec.rb
355
+ - pkg/riak-client-1.0.0/spec/riak/walk_spec_spec.rb
356
+ - pkg/riak-client-1.0.0/spec/spec_helper.rb
357
+ - pkg/riak-client-1.0.0/spec/support/drb_mock_server.rb
358
+ - pkg/riak-client-1.0.0/spec/support/http_backend_implementation_examples.rb
359
+ - pkg/riak-client-1.0.0/spec/support/integration_setup.rb
360
+ - pkg/riak-client-1.0.0/spec/support/mock_server.rb
361
+ - pkg/riak-client-1.0.0/spec/support/mocks.rb
362
+ - pkg/riak-client-1.0.0/spec/support/sometimes.rb
363
+ - pkg/riak-client-1.0.0/spec/support/test_server.rb
364
+ - pkg/riak-client-1.0.0/spec/support/test_server.yml.example
365
+ - pkg/riak-client-1.0.0/spec/support/unified_backend_examples.rb
366
+ - pkg/riak-client-1.0.0/spec/support/version_filter.rb
367
+ - pkg/riak-client-1.0.0.gem
368
+ - pkg/riak-client-1.0.1/erl_src/riak_kv_test014_backend.beam
369
+ - pkg/riak-client-1.0.1/erl_src/riak_kv_test014_backend.erl
370
+ - pkg/riak-client-1.0.1/erl_src/riak_kv_test_backend.beam
371
+ - pkg/riak-client-1.0.1/erl_src/riak_kv_test_backend.erl
372
+ - pkg/riak-client-1.0.1/erl_src/riak_search_test_backend.beam
373
+ - pkg/riak-client-1.0.1/erl_src/riak_search_test_backend.erl
374
+ - pkg/riak-client-1.0.1/Gemfile
375
+ - pkg/riak-client-1.0.1/Guardfile
376
+ - pkg/riak-client-1.0.1/lib/riak/bucket.rb
377
+ - pkg/riak-client-1.0.1/lib/riak/client/#http_backend.rb#
378
+ - pkg/riak-client-1.0.1/lib/riak/client/beefcake/messages.rb
379
+ - pkg/riak-client-1.0.1/lib/riak/client/beefcake/object_methods.rb
380
+ - pkg/riak-client-1.0.1/lib/riak/client/beefcake_protobuffs_backend.rb
381
+ - pkg/riak-client-1.0.1/lib/riak/client/decaying.rb
382
+ - pkg/riak-client-1.0.1/lib/riak/client/excon_backend.rb
383
+ - pkg/riak-client-1.0.1/lib/riak/client/http_backend/configuration.rb
384
+ - pkg/riak-client-1.0.1/lib/riak/client/http_backend/key_streamer.rb
385
+ - pkg/riak-client-1.0.1/lib/riak/client/http_backend/object_methods.rb
386
+ - pkg/riak-client-1.0.1/lib/riak/client/http_backend/request_headers.rb
387
+ - pkg/riak-client-1.0.1/lib/riak/client/http_backend/transport_methods.rb
388
+ - pkg/riak-client-1.0.1/lib/riak/client/http_backend.rb
389
+ - pkg/riak-client-1.0.1/lib/riak/client/net_http_backend.rb
390
+ - pkg/riak-client-1.0.1/lib/riak/client/node.rb
391
+ - pkg/riak-client-1.0.1/lib/riak/client/pool.rb
392
+ - pkg/riak-client-1.0.1/lib/riak/client/protobuffs_backend.rb
393
+ - pkg/riak-client-1.0.1/lib/riak/client/search.rb
394
+ - pkg/riak-client-1.0.1/lib/riak/client.rb
395
+ - pkg/riak-client-1.0.1/lib/riak/cluster.rb
396
+ - pkg/riak-client-1.0.1/lib/riak/core_ext/blank.rb
397
+ - pkg/riak-client-1.0.1/lib/riak/core_ext/deep_dup.rb
398
+ - pkg/riak-client-1.0.1/lib/riak/core_ext/extract_options.rb
399
+ - pkg/riak-client-1.0.1/lib/riak/core_ext/json.rb
400
+ - pkg/riak-client-1.0.1/lib/riak/core_ext/slice.rb
401
+ - pkg/riak-client-1.0.1/lib/riak/core_ext/stringify_keys.rb
402
+ - pkg/riak-client-1.0.1/lib/riak/core_ext/symbolize_keys.rb
403
+ - pkg/riak-client-1.0.1/lib/riak/core_ext/to_param.rb
404
+ - pkg/riak-client-1.0.1/lib/riak/core_ext.rb
405
+ - pkg/riak-client-1.0.1/lib/riak/encoding.rb
406
+ - pkg/riak-client-1.0.1/lib/riak/failed_request.rb
407
+ - pkg/riak-client-1.0.1/lib/riak/i18n.rb
408
+ - pkg/riak-client-1.0.1/lib/riak/json.rb
409
+ - pkg/riak-client-1.0.1/lib/riak/link.rb
410
+ - pkg/riak-client-1.0.1/lib/riak/locale/en.yml
411
+ - pkg/riak-client-1.0.1/lib/riak/locale/fr.yml
412
+ - pkg/riak-client-1.0.1/lib/riak/map_reduce/filter_builder.rb
413
+ - pkg/riak-client-1.0.1/lib/riak/map_reduce/phase.rb
414
+ - pkg/riak-client-1.0.1/lib/riak/map_reduce.rb
415
+ - pkg/riak-client-1.0.1/lib/riak/map_reduce_error.rb
416
+ - pkg/riak-client-1.0.1/lib/riak/node/#console.rb#
417
+ - pkg/riak-client-1.0.1/lib/riak/node/configuration.rb
418
+ - pkg/riak-client-1.0.1/lib/riak/node/console.rb
419
+ - pkg/riak-client-1.0.1/lib/riak/node/control.rb
420
+ - pkg/riak-client-1.0.1/lib/riak/node/defaults.rb
421
+ - pkg/riak-client-1.0.1/lib/riak/node/generation.rb
422
+ - pkg/riak-client-1.0.1/lib/riak/node/log.rb
423
+ - pkg/riak-client-1.0.1/lib/riak/node/version.rb
424
+ - pkg/riak-client-1.0.1/lib/riak/node.rb
425
+ - pkg/riak-client-1.0.1/lib/riak/robject.rb
426
+ - pkg/riak-client-1.0.1/lib/riak/search.rb
427
+ - pkg/riak-client-1.0.1/lib/riak/serializers.rb
428
+ - pkg/riak-client-1.0.1/lib/riak/stamp.rb
429
+ - pkg/riak-client-1.0.1/lib/riak/test_server.rb
430
+ - pkg/riak-client-1.0.1/lib/riak/util/escape.rb
431
+ - pkg/riak-client-1.0.1/lib/riak/util/headers.rb
432
+ - pkg/riak-client-1.0.1/lib/riak/util/multipart/stream_parser.rb
433
+ - pkg/riak-client-1.0.1/lib/riak/util/multipart.rb
434
+ - pkg/riak-client-1.0.1/lib/riak/util/tcp_socket_extensions.rb
435
+ - pkg/riak-client-1.0.1/lib/riak/util/translation.rb
436
+ - pkg/riak-client-1.0.1/lib/riak/version.rb
437
+ - pkg/riak-client-1.0.1/lib/riak/walk_spec.rb
438
+ - pkg/riak-client-1.0.1/lib/riak.rb
439
+ - pkg/riak-client-1.0.1/LICENSE
440
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.beam
441
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_kv_test014_backend.erl
442
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_kv_test_backend.beam
443
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_kv_test_backend.erl
444
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_search_test_backend.beam
445
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/erl_src/riak_search_test_backend.erl
446
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/Gemfile
447
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/Guardfile
448
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/bucket.rb
449
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/#http_backend.rb#
450
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/beefcake/messages.rb
451
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/beefcake/object_methods.rb
452
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/beefcake_protobuffs_backend.rb
453
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/decaying.rb
454
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/excon_backend.rb
455
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/configuration.rb
456
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/key_streamer.rb
457
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/object_methods.rb
458
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/request_headers.rb
459
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend/transport_methods.rb
460
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/http_backend.rb
461
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/net_http_backend.rb
462
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/node.rb
463
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/pool.rb
464
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/protobuffs_backend.rb
465
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client/search.rb
466
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/client.rb
467
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/cluster.rb
468
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/blank.rb
469
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/deep_dup.rb
470
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/extract_options.rb
471
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/json.rb
472
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/slice.rb
473
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/stringify_keys.rb
474
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/symbolize_keys.rb
475
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext/to_param.rb
476
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/core_ext.rb
477
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/encoding.rb
478
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/failed_request.rb
479
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/i18n.rb
480
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/json.rb
481
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/link.rb
482
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/locale/en.yml
483
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/map_reduce/filter_builder.rb
484
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/map_reduce/phase.rb
485
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/map_reduce.rb
486
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/map_reduce_error.rb
487
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/#console.rb#
488
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/configuration.rb
489
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/console.rb
490
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/control.rb
491
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/defaults.rb
492
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/generation.rb
493
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/log.rb
494
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node/version.rb
495
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/node.rb
496
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/robject.rb
497
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/search.rb
498
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/serializers.rb
499
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/stamp.rb
500
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/test_server.rb
501
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/escape.rb
502
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/headers.rb
503
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/multipart/stream_parser.rb
504
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/multipart.rb
505
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/tcp_socket_extensions.rb
506
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/util/translation.rb
507
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/version.rb
508
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak/walk_spec.rb
509
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/lib/riak.rb
510
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/LICENSE
511
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/Rakefile
512
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/README.markdown
513
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/RELEASE_NOTES.md
514
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/riak-client.gemspec
515
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/failover/failover.rb
516
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/cat.jpg
517
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-blank.txt
518
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-mapreduce.txt
519
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-with-body.txt
520
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-with-marked-tombstones.txt
521
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/multipart-with-unmarked-tombstone.txt
522
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/server.cert.crt
523
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/server.cert.key
524
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/fixtures/test.pem
525
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/cluster_spec.rb
526
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/http_backends_spec.rb
527
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/node_spec.rb
528
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/protobuffs_backends_spec.rb
529
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/test_server_spec.rb
530
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/integration/riak/threading_spec.rb
531
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/beefcake_protobuffs_backend/object_methods_spec.rb
532
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/beefcake_protobuffs_backend_spec.rb
533
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/bucket_spec.rb
534
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/client_spec.rb
535
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/core_ext/to_param_spec.rb
536
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/escape_spec.rb
537
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/excon_backend_spec.rb
538
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/headers_spec.rb
539
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/http_backend/configuration_spec.rb
540
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/http_backend/object_methods_spec.rb
541
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/http_backend/transport_methods_spec.rb
542
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/http_backend_spec.rb
543
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/link_spec.rb
544
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/map_reduce/filter_builder_spec.rb
545
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/map_reduce/phase_spec.rb
546
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/map_reduce_spec.rb
547
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/multipart_spec.rb
548
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/net_http_backend_spec.rb
549
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/node_spec.rb
550
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/pool_spec.rb
551
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/robject_spec.rb
552
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/search_spec.rb
553
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/serializers_spec.rb
554
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/stamp_spec.rb
555
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/stream_parser_spec.rb
556
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/riak/walk_spec_spec.rb
557
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/spec_helper.rb
558
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/drb_mock_server.rb
559
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/http_backend_implementation_examples.rb
560
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/integration_setup.rb
561
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/mock_server.rb
562
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/mocks.rb
563
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/sometimes.rb
564
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/test_server.rb
565
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/test_server.yml.example
566
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/unified_backend_examples.rb
567
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0/spec/support/version_filter.rb
568
+ - pkg/riak-client-1.0.1/pkg/riak-client-1.0.0.gem
569
+ - pkg/riak-client-1.0.1/Rakefile
570
+ - pkg/riak-client-1.0.1/README.markdown
571
+ - pkg/riak-client-1.0.1/RELEASE_NOTES.md
572
+ - pkg/riak-client-1.0.1/riak-client.gemspec
573
+ - pkg/riak-client-1.0.1/spec/failover/failover.rb
574
+ - pkg/riak-client-1.0.1/spec/fixtures/cat.jpg
575
+ - pkg/riak-client-1.0.1/spec/fixtures/multipart-blank.txt
576
+ - pkg/riak-client-1.0.1/spec/fixtures/multipart-mapreduce.txt
577
+ - pkg/riak-client-1.0.1/spec/fixtures/multipart-with-body.txt
578
+ - pkg/riak-client-1.0.1/spec/fixtures/multipart-with-marked-tombstones.txt
579
+ - pkg/riak-client-1.0.1/spec/fixtures/multipart-with-unmarked-tombstone.txt
580
+ - pkg/riak-client-1.0.1/spec/fixtures/server.cert.crt
581
+ - pkg/riak-client-1.0.1/spec/fixtures/server.cert.key
582
+ - pkg/riak-client-1.0.1/spec/fixtures/test.pem
583
+ - pkg/riak-client-1.0.1/spec/integration/riak/cluster_spec.rb
584
+ - pkg/riak-client-1.0.1/spec/integration/riak/http_backends_spec.rb
585
+ - pkg/riak-client-1.0.1/spec/integration/riak/node_spec.rb
586
+ - pkg/riak-client-1.0.1/spec/integration/riak/protobuffs_backends_spec.rb
587
+ - pkg/riak-client-1.0.1/spec/integration/riak/test_server_spec.rb
588
+ - pkg/riak-client-1.0.1/spec/integration/riak/threading_spec.rb
589
+ - pkg/riak-client-1.0.1/spec/riak/beefcake_protobuffs_backend/object_methods_spec.rb
590
+ - pkg/riak-client-1.0.1/spec/riak/beefcake_protobuffs_backend_spec.rb
591
+ - pkg/riak-client-1.0.1/spec/riak/bucket_spec.rb
592
+ - pkg/riak-client-1.0.1/spec/riak/client_spec.rb
593
+ - pkg/riak-client-1.0.1/spec/riak/core_ext/to_param_spec.rb
594
+ - pkg/riak-client-1.0.1/spec/riak/escape_spec.rb
595
+ - pkg/riak-client-1.0.1/spec/riak/excon_backend_spec.rb
596
+ - pkg/riak-client-1.0.1/spec/riak/headers_spec.rb
597
+ - pkg/riak-client-1.0.1/spec/riak/http_backend/configuration_spec.rb
598
+ - pkg/riak-client-1.0.1/spec/riak/http_backend/object_methods_spec.rb
599
+ - pkg/riak-client-1.0.1/spec/riak/http_backend/transport_methods_spec.rb
600
+ - pkg/riak-client-1.0.1/spec/riak/http_backend_spec.rb
601
+ - pkg/riak-client-1.0.1/spec/riak/link_spec.rb
602
+ - pkg/riak-client-1.0.1/spec/riak/map_reduce/filter_builder_spec.rb
603
+ - pkg/riak-client-1.0.1/spec/riak/map_reduce/phase_spec.rb
604
+ - pkg/riak-client-1.0.1/spec/riak/map_reduce_spec.rb
605
+ - pkg/riak-client-1.0.1/spec/riak/multipart_spec.rb
606
+ - pkg/riak-client-1.0.1/spec/riak/net_http_backend_spec.rb
607
+ - pkg/riak-client-1.0.1/spec/riak/node_spec.rb
608
+ - pkg/riak-client-1.0.1/spec/riak/pool_spec.rb
609
+ - pkg/riak-client-1.0.1/spec/riak/robject_spec.rb
610
+ - pkg/riak-client-1.0.1/spec/riak/search_spec.rb
611
+ - pkg/riak-client-1.0.1/spec/riak/serializers_spec.rb
612
+ - pkg/riak-client-1.0.1/spec/riak/stamp_spec.rb
613
+ - pkg/riak-client-1.0.1/spec/riak/stream_parser_spec.rb
614
+ - pkg/riak-client-1.0.1/spec/riak/walk_spec_spec.rb
615
+ - pkg/riak-client-1.0.1/spec/spec_helper.rb
616
+ - pkg/riak-client-1.0.1/spec/support/drb_mock_server.rb
617
+ - pkg/riak-client-1.0.1/spec/support/http_backend_implementation_examples.rb
618
+ - pkg/riak-client-1.0.1/spec/support/integration_setup.rb
619
+ - pkg/riak-client-1.0.1/spec/support/mock_server.rb
620
+ - pkg/riak-client-1.0.1/spec/support/mocks.rb
621
+ - pkg/riak-client-1.0.1/spec/support/sometimes.rb
622
+ - pkg/riak-client-1.0.1/spec/support/test_server.rb
623
+ - pkg/riak-client-1.0.1/spec/support/test_server.yml.example
624
+ - pkg/riak-client-1.0.1/spec/support/unified_backend_examples.rb
625
+ - pkg/riak-client-1.0.1/spec/support/version_filter.rb
626
+ - pkg/riak-client-1.0.1.gem
241
627
  - Rakefile
242
628
  - README.markdown
243
629
  - RELEASE_NOTES.md
@@ -298,38 +684,29 @@ files:
298
684
  - .gitignore
299
685
  homepage: http://github.com/basho/riak-ruby-client
300
686
  licenses: []
301
-
302
687
  post_install_message:
303
688
  rdoc_options: []
304
-
305
- require_paths:
689
+ require_paths:
306
690
  - lib
307
- required_ruby_version: !ruby/object:Gem::Requirement
691
+ required_ruby_version: !ruby/object:Gem::Requirement
308
692
  none: false
309
- requirements:
310
- - - ">="
311
- - !ruby/object:Gem::Version
312
- hash: 3
313
- segments:
314
- - 0
315
- version: "0"
316
- required_rubygems_version: !ruby/object:Gem::Requirement
693
+ requirements:
694
+ - - ! '>='
695
+ - !ruby/object:Gem::Version
696
+ version: '0'
697
+ required_rubygems_version: !ruby/object:Gem::Requirement
317
698
  none: false
318
- requirements:
319
- - - ">="
320
- - !ruby/object:Gem::Version
321
- hash: 3
322
- segments:
323
- - 0
324
- version: "0"
699
+ requirements:
700
+ - - ! '>='
701
+ - !ruby/object:Gem::Version
702
+ version: '0'
325
703
  requirements: []
326
-
327
704
  rubyforge_project:
328
- rubygems_version: 1.8.10
705
+ rubygems_version: 1.8.21
329
706
  signing_key:
330
707
  specification_version: 3
331
708
  summary: riak-client is a rich client for Riak, the distributed database by Basho.
332
- test_files:
709
+ test_files:
333
710
  - spec/failover/failover.rb
334
711
  - spec/fixtures/cat.jpg
335
712
  - spec/fixtures/multipart-blank.txt