jcouchbase 0.1.2 → 0.1.3
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.
- data/README.md +22 -1
- data/jcouchbase.gemspec +7 -3
- data/lib/jcouchbase/jars/commons-codec-1.5.jar +0 -0
- data/lib/jcouchbase/jars/couchbase-client-1.1-dp2-javadocs.jar +0 -0
- data/lib/jcouchbase/jars/couchbase-client-1.1-dp2.jar +0 -0
- data/lib/jcouchbase/jars/httpcore-4.1.1.jar +0 -0
- data/lib/jcouchbase/jars/httpcore-nio-4.1.1.jar +0 -0
- data/lib/jcouchbase/jars/jettison-1.1.jar +0 -0
- data/lib/jcouchbase/jars/netty-3.2.0.Final.jar +0 -0
- data/lib/jcouchbase/jars/spymemcached-2.8.4-javadocs.jar +0 -0
- data/lib/jcouchbase/jars/spymemcached-2.8.4.jar +0 -0
- data/lib/jcouchbase/version.rb +1 -1
- metadata +7 -3
- data/lib/jcouchbase/jars/couchbase-client-1.0.2.jar +0 -0
- data/lib/jcouchbase/jars/spymemcached-2.8.0.jar +0 -0
data/README.md
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
jcouchbase
|
|
2
2
|
==========
|
|
3
3
|
|
|
4
|
-
Couchbase jruby wrapper gem
|
|
4
|
+
Quick and dirty Couchbase jruby wrapper gem.
|
|
5
|
+
|
|
6
|
+
Use for Couchbase 2.x series.
|
|
7
|
+
|
|
8
|
+
installation
|
|
9
|
+
============
|
|
10
|
+
|
|
11
|
+
gem install jcouchbase
|
|
12
|
+
|
|
13
|
+
usage
|
|
14
|
+
=====
|
|
15
|
+
|
|
16
|
+
require 'couchbase'
|
|
17
|
+
|
|
18
|
+
c = Couchbase.new('http://xocouch01.localcloud:8091/pools', 'default', 'secretpassword' )
|
|
19
|
+
|
|
20
|
+
c.set( 'mykey', 0, { 'blah' => 'blarg', 'blip' => [ 'bloop', 'blorp', 'blop' ] } )
|
|
21
|
+
|
|
22
|
+
p c['mykey']
|
|
23
|
+
|
|
24
|
+
c.shutdown
|
|
25
|
+
|
data/jcouchbase.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'jcouchbase'
|
|
3
|
-
s.version = '0.1.
|
|
3
|
+
s.version = '0.1.3'
|
|
4
4
|
s.date = '2012-08-28'
|
|
5
5
|
s.platform = Gem::Platform::RUBY
|
|
6
6
|
s.authors = ["Jeremy J Brenner"]
|
|
@@ -19,17 +19,21 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
lib/jcouchbase/jars/commons-codec-1.5.jar
|
|
20
20
|
lib/jcouchbase/jars/commons-codec-1.6.jar
|
|
21
21
|
lib/jcouchbase/jars/commons-logging-1.1.1.jar
|
|
22
|
-
lib/jcouchbase/jars/couchbase-client-1.
|
|
22
|
+
lib/jcouchbase/jars/couchbase-client-1.1-dp2-javadocs.jar
|
|
23
|
+
lib/jcouchbase/jars/couchbase-client-1.1-dp2.jar
|
|
23
24
|
lib/jcouchbase/jars/fluent-hc-4.2.1.jar
|
|
24
25
|
lib/jcouchbase/jars/httpclient-4.2.1.jar
|
|
25
26
|
lib/jcouchbase/jars/httpclient-cache-4.2.1.jar
|
|
27
|
+
lib/jcouchbase/jars/httpcore-4.1.1.jar
|
|
26
28
|
lib/jcouchbase/jars/httpcore-4.2.1.jar
|
|
27
29
|
lib/jcouchbase/jars/httpcore-ab-4.2.1.jar
|
|
30
|
+
lib/jcouchbase/jars/httpcore-nio-4.1.1.jar
|
|
28
31
|
lib/jcouchbase/jars/httpcore-nio-4.2.1.jar
|
|
29
32
|
lib/jcouchbase/jars/httpmime-4.2.1.jar
|
|
30
33
|
lib/jcouchbase/jars/jettison-1.1.jar
|
|
31
34
|
lib/jcouchbase/jars/netty-3.2.0.Final.jar
|
|
32
|
-
lib/jcouchbase/jars/spymemcached-2.8.
|
|
35
|
+
lib/jcouchbase/jars/spymemcached-2.8.4-javadocs.jar
|
|
36
|
+
lib/jcouchbase/jars/spymemcached-2.8.4.jar
|
|
33
37
|
lib/jcouchbase/jcouchbase.rb
|
|
34
38
|
lib/jcouchbase/version.rb
|
|
35
39
|
]
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
data/lib/jcouchbase/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jcouchbase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -42,17 +42,21 @@ files:
|
|
|
42
42
|
- lib/jcouchbase/jars/commons-codec-1.5.jar
|
|
43
43
|
- lib/jcouchbase/jars/commons-codec-1.6.jar
|
|
44
44
|
- lib/jcouchbase/jars/commons-logging-1.1.1.jar
|
|
45
|
-
- lib/jcouchbase/jars/couchbase-client-1.
|
|
45
|
+
- lib/jcouchbase/jars/couchbase-client-1.1-dp2-javadocs.jar
|
|
46
|
+
- lib/jcouchbase/jars/couchbase-client-1.1-dp2.jar
|
|
46
47
|
- lib/jcouchbase/jars/fluent-hc-4.2.1.jar
|
|
47
48
|
- lib/jcouchbase/jars/httpclient-4.2.1.jar
|
|
48
49
|
- lib/jcouchbase/jars/httpclient-cache-4.2.1.jar
|
|
50
|
+
- lib/jcouchbase/jars/httpcore-4.1.1.jar
|
|
49
51
|
- lib/jcouchbase/jars/httpcore-4.2.1.jar
|
|
50
52
|
- lib/jcouchbase/jars/httpcore-ab-4.2.1.jar
|
|
53
|
+
- lib/jcouchbase/jars/httpcore-nio-4.1.1.jar
|
|
51
54
|
- lib/jcouchbase/jars/httpcore-nio-4.2.1.jar
|
|
52
55
|
- lib/jcouchbase/jars/httpmime-4.2.1.jar
|
|
53
56
|
- lib/jcouchbase/jars/jettison-1.1.jar
|
|
54
57
|
- lib/jcouchbase/jars/netty-3.2.0.Final.jar
|
|
55
|
-
- lib/jcouchbase/jars/spymemcached-2.8.
|
|
58
|
+
- lib/jcouchbase/jars/spymemcached-2.8.4-javadocs.jar
|
|
59
|
+
- lib/jcouchbase/jars/spymemcached-2.8.4.jar
|
|
56
60
|
- lib/jcouchbase/jcouchbase.rb
|
|
57
61
|
- lib/jcouchbase/version.rb
|
|
58
62
|
homepage: http://github.com/jeremy-brenner/jcouchbase
|
|
Binary file
|
|
Binary file
|