riakpb 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ # Copyright 2010 Sean Cribbs, Sonian Inc., and Basho Technologies, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
15
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
16
+
17
+ require 'rubygems' # Use the gems path only for the spec suite
18
+ require 'riak'
19
+ require 'riak/util/message_code'
20
+ require 'rspec'
21
+ require 'rspec/autorun'
22
+
23
+ Rspec.configure do |config|
24
+ config.mock_with :rspec
25
+ end
metadata ADDED
@@ -0,0 +1,121 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: riakpb
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 0
9
+ version: 0.1.0
10
+ platform: ruby
11
+ authors:
12
+ - Scott Gonyea
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-06-14 00:00:00 -07:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rubyforge
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 2
29
+ - 0
30
+ - 4
31
+ version: 2.0.4
32
+ type: :development
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: hoe
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ segments:
42
+ - 2
43
+ - 6
44
+ - 0
45
+ version: 2.6.0
46
+ type: :development
47
+ version_requirements: *id002
48
+ description: This is a Ruby client for Riak, using protocol buffers instead of REST. It offers some benefit in terms of speed and it abstracts Buckets/Keys differently than does the REST client. Different != Better.
49
+ email:
50
+ - me@sgonyea.com
51
+ executables: []
52
+
53
+ extensions: []
54
+
55
+ extra_rdoc_files:
56
+ - History.txt
57
+ - Manifest.txt
58
+ files:
59
+ - History.txt
60
+ - Manifest.txt
61
+ - README.rdoc
62
+ - Rakefile
63
+ - lib/riak.rb
64
+ - lib/riak/client.rb
65
+ - lib/riak/client/rpc.rb
66
+ - lib/riak/client_pb.rb
67
+ - lib/riak/bucket.rb
68
+ - lib/riak/key.rb
69
+ - lib/riak/riak_content.rb
70
+ - lib/riak/i18n.rb
71
+ - lib/riak/locale/en.yml
72
+ - lib/riak/util/decode.rb
73
+ - lib/riak/util/encode.rb
74
+ - lib/riak/util/message_code.rb
75
+ - lib/riak/util/translation.rb
76
+ - lib/riak/failed_exchange.rb
77
+ - lib/riak/failed_request.rb
78
+ - lib/riak/sibling_error.rb
79
+ - script/console
80
+ - script/destroy
81
+ - script/generate
82
+ - spec/spec_helper.rb
83
+ - spec/riak/client_spec.rb
84
+ - spec/riak/rpc_spec.rb
85
+ - spec/riak/bucket_spec.rb
86
+ - spec/riak/key_spec.rb
87
+ - spec/riak/riak_content_spec.rb
88
+ - spec/riak/map_reduce_spec.rb
89
+ has_rdoc: true
90
+ homepage: http://github.com/aitrus/riak-pbclient
91
+ licenses: []
92
+
93
+ post_install_message:
94
+ rdoc_options:
95
+ - --main
96
+ - README.rdoc
97
+ require_paths:
98
+ - lib
99
+ required_ruby_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ segments:
104
+ - 0
105
+ version: "0"
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ segments:
111
+ - 0
112
+ version: "0"
113
+ requirements: []
114
+
115
+ rubyforge_project: riakpb
116
+ rubygems_version: 1.3.6
117
+ signing_key:
118
+ specification_version: 3
119
+ summary: riak-pbclient is a protocol buffer client for Riak--the distributed database by Basho.
120
+ test_files: []
121
+