couchbase-structures 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # Brand New Gem, still in progress!
2
+
1
3
  # CouchbaseStructures
2
4
 
3
5
  TODO: Write a gem description
@@ -6,7 +8,7 @@ TODO: Write a gem description
6
8
 
7
9
  Add this line to your application's Gemfile:
8
10
 
9
- gem 'couchbase_structures'
11
+ gem 'couchbase-structures'
10
12
 
11
13
  And then execute:
12
14
 
@@ -14,7 +16,7 @@ And then execute:
14
16
 
15
17
  Or install it yourself as:
16
18
 
17
- $ gem install couchbase_structures
19
+ $ gem install couchbase-structures
18
20
 
19
21
  ## Usage
20
22
 
@@ -1,8 +1,8 @@
1
- require 'document_store'
1
+ require 'couchbase_doc_store'
2
2
 
3
3
  module CouchbaseStructures
4
4
  class Queue
5
- include DocumentStore
5
+ include CouchbaseDocStore
6
6
 
7
7
  def initialize(key)
8
8
  @key = key
@@ -1,8 +1,9 @@
1
- require 'document_store'
1
+ require 'couchbase_doc_store'
2
2
 
3
+ # haven't written this one yet... it's a copy of Stack code
3
4
  module CouchbaseStructures
4
5
  class SortedList
5
- include DocumentStore
6
+ include CouchbaseDocStore
6
7
 
7
8
  def initialize(key, sort_type = {})
8
9
 
@@ -1,8 +1,8 @@
1
- require 'document_store'
1
+ require 'couchbase_doc_store'
2
2
 
3
3
  module CouchbaseStructures
4
4
  class Stack
5
- include DocumentStore
5
+ include CouchbaseDocStore
6
6
 
7
7
  def initialize(key)
8
8
  @key = key
@@ -1,3 +1,3 @@
1
1
  module CouchbaseStructures
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: couchbase-structures
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: