redis_object 0.5.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.
- data/.gitignore +0 -2
- data/Gemfile +0 -4
- data/README.markdown +15 -24
- data/Rakefile +0 -8
- data/doc/Object.html +185 -0
- data/doc/Seabright.html +181 -0
- data/doc/Seabright/Adapter.html +442 -0
- data/doc/Seabright/Collection.html +797 -0
- data/doc/Seabright/Collections.html +635 -0
- data/doc/Seabright/Collections/ClassMethods.html +212 -0
- data/doc/Seabright/ExternalIndex.html +217 -0
- data/doc/Seabright/History.html +382 -0
- data/doc/Seabright/History/ClassMethods.html +276 -0
- data/doc/Seabright/Indices.html +324 -0
- data/doc/Seabright/Indices/ClassMethods.html +348 -0
- data/doc/Seabright/Keys.html +314 -0
- data/doc/Seabright/Keys/ClassMethods.html +276 -0
- data/doc/Seabright/ObjectBase.html +852 -0
- data/doc/Seabright/ObjectBase/ClassMethods.html +677 -0
- data/doc/Seabright/RedisObject.html +230 -0
- data/doc/Seabright/References.html +280 -0
- data/doc/Seabright/Storage.html +252 -0
- data/doc/Seabright/Storage/ClassMethods.html +276 -0
- data/doc/Seabright/Storage/MySQL.html +442 -0
- data/doc/Seabright/Storage/Redis.html +218 -0
- data/doc/Seabright/Template.html +212 -0
- data/doc/Seabright/Template/ClassMethods.html +166 -0
- data/doc/Seabright/Timestamps.html +292 -0
- data/doc/Seabright/Timestamps/ClassMethods.html +214 -0
- data/doc/Seabright/Types.html +410 -0
- data/doc/Seabright/Types/ClassMethods.html +308 -0
- data/doc/created.rid +17 -0
- data/doc/images/add.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +125 -0
- data/doc/js/darkfish.js +153 -0
- data/doc/js/jquery.js +18 -0
- data/doc/js/navigation.js +142 -0
- data/doc/js/search.js +94 -0
- data/doc/js/search_index.js +1 -0
- data/doc/js/searcher.js +228 -0
- data/doc/rdoc.css +543 -0
- data/doc/table_of_contents.html +394 -0
- data/lib/redis_object.rb +1 -11
- data/lib/redis_object/base.rb +60 -210
- data/lib/redis_object/collection.rb +100 -130
- data/lib/redis_object/defaults.rb +8 -21
- data/lib/redis_object/ext/filters.rb +16 -34
- data/lib/redis_object/ext/triggers.rb +13 -75
- data/lib/redis_object/{experimental/history.rb → history.rb} +0 -0
- data/lib/redis_object/indices.rb +39 -44
- data/lib/redis_object/keys.rb +4 -4
- data/lib/redis_object/storage.rb +1 -30
- data/lib/redis_object/storage/adapter.rb +3 -6
- data/lib/redis_object/storage/redis.rb +3 -98
- data/lib/redis_object/timestamps.rb +21 -42
- data/lib/redis_object/types.rb +30 -172
- data/lib/redis_object/version.rb +1 -1
- data/redis_object.gemspec +0 -1
- data/spec/base_spec.rb +6 -41
- data/spec/spec_helper.rb +1 -32
- metadata +116 -111
- data/.coveralls.yml +0 -1
- data/.travis.yml +0 -5
- data/lib/redis_object/ext/script_cache.rb +0 -92
- data/lib/redis_object/ext/shardable.rb +0 -18
- data/lib/redis_object/ext/view_caching.rb +0 -258
- data/lib/redis_object/ext/views.rb +0 -102
- data/lib/redis_object/inheritance_tracking.rb +0 -23
- data/spec/adapter_spec.rb +0 -43
- data/spec/benchmark_spec.rb +0 -46
- data/spec/collections_spec.rb +0 -144
- data/spec/defaults_spec.rb +0 -56
- data/spec/filters_spec.rb +0 -29
- data/spec/indices_spec.rb +0 -45
- data/spec/rename_class_spec.rb +0 -96
- data/spec/timestamp_spec.rb +0 -28
- data/spec/trigger_spec.rb +0 -51
- data/spec/types_spec.rb +0 -103
- data/spec/view_caching_spec.rb +0 -130
- data/spec/views_spec.rb +0 -72
data/.gitignore
CHANGED
data/Gemfile
CHANGED
data/README.markdown
CHANGED
@@ -1,20 +1,14 @@
|
|
1
1
|
# RedisObject
|
2
2
|
RedisObject is a fast and simple-to-use object persistence layer for Ruby.
|
3
3
|
|
4
|
-
[](https://travis-ci.org/remotezygote/RedisObject)
|
5
|
-
[](https://coveralls.io/r/remotezygote/RedisObject?branch=master)
|
6
|
-
|
7
4
|
## Prerequisites
|
8
|
-
You'll need [Redis](http://redis.io).
|
5
|
+
You'll need [Redis](http://redis.io).
|
9
6
|
|
10
7
|
|
11
8
|
## Installation
|
9
|
+
It's hosted on [rubygems.org][rubygems].
|
12
10
|
|
13
|
-
gem install redis_object
|
14
|
-
|
15
|
-
Or, you can add it to your Gemfile:
|
16
|
-
|
17
|
-
gem 'redis_object'
|
11
|
+
sudo gem install redis_object
|
18
12
|
|
19
13
|
|
20
14
|
## Usage
|
@@ -57,7 +51,7 @@ end
|
|
57
51
|
## 'Collections'
|
58
52
|
Object relationships are stored in collections of objects attached to other objects. To 'collect' an object onto another, you simply call `reference` to reference the objects (also aliased to the concat operator `<<`).
|
59
53
|
|
60
|
-
Collections are automatically created, and can be access by their plural, lower-case name to gather all of the items in a collection (returns
|
54
|
+
Collections are automatically created, and can be access by their plural, lower-case name to gather all of the items in a collection (returns and Enumerable `Collection` object), or by its singular lower-case name to just get one somewhat randomly (useful for 1 -> 1 style relationships).
|
61
55
|
|
62
56
|
Example:
|
63
57
|
|
@@ -88,19 +82,19 @@ john.address
|
|
88
82
|
# }
|
89
83
|
```
|
90
84
|
|
91
|
-
You may notice that the type of object, its basic storage key, and some timestamps are automatically created and updated appropriately.
|
85
|
+
You may also notice that the type of object, its basic storage key, and some timestamps are also automatically created and updated appropriately.
|
92
86
|
|
93
87
|
It is important to note that collections inherit any indices of its underlying object type. See Indices below for examples.
|
94
88
|
|
95
89
|
## Types
|
96
90
|
A few types of data can be specified for certain fields. The types supported are:
|
97
91
|
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
92
|
+
Date
|
93
|
+
Number
|
94
|
+
Float
|
95
|
+
Bool
|
96
|
+
Array
|
97
|
+
JSON (store any data that can be JSON-encoded - it will be automatically encoded/decoded when stored/accessed)
|
104
98
|
|
105
99
|
These types are also used for scoring when keeping field indices. If no type is specified, String is used, and no scoring is possible at this time.
|
106
100
|
|
@@ -119,7 +113,7 @@ john.verified # false
|
|
119
113
|
|
120
114
|
TODO: Add verified? and verified! -style methods automagically for boolean fields.
|
121
115
|
|
122
|
-
You can add your own custom types by defining filter methods for getting and setting a field, and can define a scoring function if you would like to index fields of
|
116
|
+
You can also add your own custom types by defining filter methods for getting and setting a field, and can also define a scoring function if you would like to index fields of the type.
|
123
117
|
|
124
118
|
Example:
|
125
119
|
|
@@ -154,7 +148,7 @@ end
|
|
154
148
|
TODO: Make defining custom formats easier - no need to define class methods for this - could have helper function for it like `custom_format :bool, :get => :format_boolean` or similar.
|
155
149
|
|
156
150
|
## Indices
|
157
|
-
Any field that can be scored can store a sidecar index by that score. These indices can be used to index items in a collection (internally, it is a simple Redis set intersection, so it is very fast). Timestamps are indexed by default for any object, so out of the box you can do:
|
151
|
+
Any field that can be scored can store a sidecar index by that score. These indices can also be used to index items in a collection (internally, it is a simple Redis set intersection, so it is very fast). Timestamps are indexed by default for any object, so out of the box you can do:
|
158
152
|
|
159
153
|
```ruby
|
160
154
|
Person.indexed(:created_at) # all Person objects, oldest first
|
@@ -166,14 +160,11 @@ Person.indexed(:updated_at, -1, true) do |person|
|
|
166
160
|
end
|
167
161
|
```
|
168
162
|
|
169
|
-
Accessing indexed items always returns an Enumerator, so first/last/each/count/etc. are usable
|
170
|
-
|
171
|
-
## Named Views
|
172
|
-
`TODO: Add some damn View documentation.`
|
163
|
+
Accessing indexed items always returns an Enumerator, so first/last/each/count/etc. are always usable and will access items only when iterated.
|
173
164
|
|
174
165
|
## Links
|
175
166
|
Redis: [http://redis.io](http://redis.io)
|
176
167
|
RedisObject Code: [https://github.com/remotezygote/RedisObject](https://github.com/remotezygote/RedisObject)
|
177
168
|
|
178
169
|
|
179
|
-
[rubygems]: http://rubygems.org/gems/redis_object
|
170
|
+
[rubygems]: http://rubygems.org/gems/redis_object
|
data/Rakefile
CHANGED
data/doc/Object.html
ADDED
@@ -0,0 +1,185 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
6
|
+
|
7
|
+
<title>class Object - StubbornObject</title>
|
8
|
+
|
9
|
+
<link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
|
10
|
+
|
11
|
+
<script type="text/javascript">
|
12
|
+
var rdoc_rel_prefix = "./";
|
13
|
+
</script>
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
|
16
|
+
<script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
|
17
|
+
<script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
|
18
|
+
<script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
|
19
|
+
<script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
|
20
|
+
<script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
|
21
|
+
|
22
|
+
|
23
|
+
<body id="top" class="class">
|
24
|
+
<nav id="metadata">
|
25
|
+
<nav id="home-section" class="section">
|
26
|
+
<h3 class="section-header">
|
27
|
+
<a href="./index.html">Home</a>
|
28
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
29
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
30
|
+
</h3>
|
31
|
+
</nav>
|
32
|
+
|
33
|
+
|
34
|
+
<nav id="search-section" class="section project-section" class="initially-hidden">
|
35
|
+
<form action="#" method="get" accept-charset="utf-8">
|
36
|
+
<h3 class="section-header">
|
37
|
+
<input type="text" name="search" placeholder="Search" id="search-field"
|
38
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
39
|
+
</h3>
|
40
|
+
</form>
|
41
|
+
|
42
|
+
<ul id="search-results" class="initially-hidden"></ul>
|
43
|
+
</nav>
|
44
|
+
|
45
|
+
|
46
|
+
<div id="file-metadata">
|
47
|
+
<nav id="file-list-section" class="section">
|
48
|
+
<h3 class="section-header">Defined In</h3>
|
49
|
+
<ul>
|
50
|
+
<li>lib/redis_object.rb
|
51
|
+
</ul>
|
52
|
+
</nav>
|
53
|
+
|
54
|
+
|
55
|
+
</div>
|
56
|
+
|
57
|
+
<div id="class-metadata">
|
58
|
+
|
59
|
+
<nav id="parent-class-section" class="section">
|
60
|
+
<h3 class="section-header">Parent</h3>
|
61
|
+
|
62
|
+
<p class="link">BasicObject
|
63
|
+
|
64
|
+
</nav>
|
65
|
+
|
66
|
+
|
67
|
+
|
68
|
+
</div>
|
69
|
+
|
70
|
+
<div id="project-metadata">
|
71
|
+
|
72
|
+
<nav id="classindex-section" class="section project-section">
|
73
|
+
<h3 class="section-header">Class and Module Index</h3>
|
74
|
+
|
75
|
+
<ul class="link-list">
|
76
|
+
|
77
|
+
<li><a href="./Seabright.html">Seabright</a>
|
78
|
+
|
79
|
+
<li><a href="./Seabright/Adapter.html">Seabright::Adapter</a>
|
80
|
+
|
81
|
+
<li><a href="./Seabright/Collection.html">Seabright::Collection</a>
|
82
|
+
|
83
|
+
<li><a href="./Seabright/Collections.html">Seabright::Collections</a>
|
84
|
+
|
85
|
+
<li><a href="./Seabright/Collections/ClassMethods.html">Seabright::Collections::ClassMethods</a>
|
86
|
+
|
87
|
+
<li><a href="./Seabright/ExternalIndex.html">Seabright::ExternalIndex</a>
|
88
|
+
|
89
|
+
<li><a href="./Seabright/History.html">Seabright::History</a>
|
90
|
+
|
91
|
+
<li><a href="./Seabright/History/ClassMethods.html">Seabright::History::ClassMethods</a>
|
92
|
+
|
93
|
+
<li><a href="./Seabright/Indices.html">Seabright::Indices</a>
|
94
|
+
|
95
|
+
<li><a href="./Seabright/Indices/ClassMethods.html">Seabright::Indices::ClassMethods</a>
|
96
|
+
|
97
|
+
<li><a href="./Seabright/Keys.html">Seabright::Keys</a>
|
98
|
+
|
99
|
+
<li><a href="./Seabright/Keys/ClassMethods.html">Seabright::Keys::ClassMethods</a>
|
100
|
+
|
101
|
+
<li><a href="./Seabright/ObjectBase.html">Seabright::ObjectBase</a>
|
102
|
+
|
103
|
+
<li><a href="./Seabright/ObjectBase/ClassMethods.html">Seabright::ObjectBase::ClassMethods</a>
|
104
|
+
|
105
|
+
<li><a href="./Seabright/RedisObject.html">Seabright::RedisObject</a>
|
106
|
+
|
107
|
+
<li><a href="./Seabright/RedisObject.html">Seabright::RedisObject</a>
|
108
|
+
|
109
|
+
<li><a href="./Seabright/References.html">Seabright::References</a>
|
110
|
+
|
111
|
+
<li><a href="./Seabright/Storage.html">Seabright::Storage</a>
|
112
|
+
|
113
|
+
<li><a href="./Seabright/Storage/ClassMethods.html">Seabright::Storage::ClassMethods</a>
|
114
|
+
|
115
|
+
<li><a href="./Seabright/Storage/MySQL.html">Seabright::Storage::MySQL</a>
|
116
|
+
|
117
|
+
<li><a href="./Seabright/Storage/Redis.html">Seabright::Storage::Redis</a>
|
118
|
+
|
119
|
+
<li><a href="./Seabright/Template.html">Seabright::Template</a>
|
120
|
+
|
121
|
+
<li><a href="./Seabright/Template/ClassMethods.html">Seabright::Template::ClassMethods</a>
|
122
|
+
|
123
|
+
<li><a href="./Seabright/Timestamps.html">Seabright::Timestamps</a>
|
124
|
+
|
125
|
+
<li><a href="./Seabright/Timestamps/ClassMethods.html">Seabright::Timestamps::ClassMethods</a>
|
126
|
+
|
127
|
+
<li><a href="./Seabright/Types.html">Seabright::Types</a>
|
128
|
+
|
129
|
+
<li><a href="./Seabright/Types/ClassMethods.html">Seabright::Types::ClassMethods</a>
|
130
|
+
|
131
|
+
<li><a href="./Object.html">Object</a>
|
132
|
+
|
133
|
+
<li><a href="./Seabright/RedisObject.html">Object::RedisObject</a>
|
134
|
+
|
135
|
+
</ul>
|
136
|
+
</nav>
|
137
|
+
|
138
|
+
</div>
|
139
|
+
</nav>
|
140
|
+
|
141
|
+
<div id="documentation">
|
142
|
+
<h1 class="class">class Object</h1>
|
143
|
+
|
144
|
+
<div id="description" class="description">
|
145
|
+
|
146
|
+
</div><!-- description -->
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
<!-- Constants -->
|
158
|
+
<section id="constants-list" class="section">
|
159
|
+
<h3 class="section-header">Constants</h3>
|
160
|
+
<dl>
|
161
|
+
|
162
|
+
<dt id="RedisObject">RedisObject
|
163
|
+
|
164
|
+
<dd class="description">
|
165
|
+
|
166
|
+
|
167
|
+
</dl>
|
168
|
+
</section>
|
169
|
+
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
<!-- Methods -->
|
174
|
+
|
175
|
+
</section><!-- 5Buntitled-5D -->
|
176
|
+
|
177
|
+
</div><!-- documentation -->
|
178
|
+
|
179
|
+
|
180
|
+
<footer id="validator-badges">
|
181
|
+
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
182
|
+
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
|
183
|
+
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
184
|
+
</footer>
|
185
|
+
|
data/doc/Seabright.html
ADDED
@@ -0,0 +1,181 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
6
|
+
|
7
|
+
<title>module Seabright - StubbornObject</title>
|
8
|
+
|
9
|
+
<link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
|
10
|
+
|
11
|
+
<script type="text/javascript">
|
12
|
+
var rdoc_rel_prefix = "./";
|
13
|
+
</script>
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
|
16
|
+
<script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
|
17
|
+
<script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
|
18
|
+
<script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
|
19
|
+
<script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
|
20
|
+
<script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
|
21
|
+
|
22
|
+
|
23
|
+
<body id="top" class="module">
|
24
|
+
<nav id="metadata">
|
25
|
+
<nav id="home-section" class="section">
|
26
|
+
<h3 class="section-header">
|
27
|
+
<a href="./index.html">Home</a>
|
28
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
29
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
30
|
+
</h3>
|
31
|
+
</nav>
|
32
|
+
|
33
|
+
|
34
|
+
<nav id="search-section" class="section project-section" class="initially-hidden">
|
35
|
+
<form action="#" method="get" accept-charset="utf-8">
|
36
|
+
<h3 class="section-header">
|
37
|
+
<input type="text" name="search" placeholder="Search" id="search-field"
|
38
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
39
|
+
</h3>
|
40
|
+
</form>
|
41
|
+
|
42
|
+
<ul id="search-results" class="initially-hidden"></ul>
|
43
|
+
</nav>
|
44
|
+
|
45
|
+
|
46
|
+
<div id="file-metadata">
|
47
|
+
<nav id="file-list-section" class="section">
|
48
|
+
<h3 class="section-header">Defined In</h3>
|
49
|
+
<ul>
|
50
|
+
<li>lib/redis_object/base.rb
|
51
|
+
<li>lib/redis_object/collection.rb
|
52
|
+
<li>lib/redis_object/external_index.rb
|
53
|
+
<li>lib/redis_object/history.rb
|
54
|
+
<li>lib/redis_object/indices.rb
|
55
|
+
<li>lib/redis_object/keys.rb
|
56
|
+
<li>lib/redis_object/references.rb
|
57
|
+
<li>lib/redis_object/storage/adapter.rb
|
58
|
+
<li>lib/redis_object/storage/mysql.rb
|
59
|
+
<li>lib/redis_object/storage/redis.rb
|
60
|
+
<li>lib/redis_object/storage.rb
|
61
|
+
<li>lib/redis_object/timestamps.rb
|
62
|
+
<li>lib/redis_object/tpl.rb
|
63
|
+
<li>lib/redis_object/types.rb
|
64
|
+
<li>lib/redis_object/version.rb
|
65
|
+
<li>lib/redis_object.rb
|
66
|
+
</ul>
|
67
|
+
</nav>
|
68
|
+
|
69
|
+
|
70
|
+
</div>
|
71
|
+
|
72
|
+
<div id="class-metadata">
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
</div>
|
78
|
+
|
79
|
+
<div id="project-metadata">
|
80
|
+
|
81
|
+
<nav id="classindex-section" class="section project-section">
|
82
|
+
<h3 class="section-header">Class and Module Index</h3>
|
83
|
+
|
84
|
+
<ul class="link-list">
|
85
|
+
|
86
|
+
<li><a href="./Seabright.html">Seabright</a>
|
87
|
+
|
88
|
+
<li><a href="./Seabright/Adapter.html">Seabright::Adapter</a>
|
89
|
+
|
90
|
+
<li><a href="./Seabright/Collection.html">Seabright::Collection</a>
|
91
|
+
|
92
|
+
<li><a href="./Seabright/Collections.html">Seabright::Collections</a>
|
93
|
+
|
94
|
+
<li><a href="./Seabright/Collections/ClassMethods.html">Seabright::Collections::ClassMethods</a>
|
95
|
+
|
96
|
+
<li><a href="./Seabright/ExternalIndex.html">Seabright::ExternalIndex</a>
|
97
|
+
|
98
|
+
<li><a href="./Seabright/History.html">Seabright::History</a>
|
99
|
+
|
100
|
+
<li><a href="./Seabright/History/ClassMethods.html">Seabright::History::ClassMethods</a>
|
101
|
+
|
102
|
+
<li><a href="./Seabright/Indices.html">Seabright::Indices</a>
|
103
|
+
|
104
|
+
<li><a href="./Seabright/Indices/ClassMethods.html">Seabright::Indices::ClassMethods</a>
|
105
|
+
|
106
|
+
<li><a href="./Seabright/Keys.html">Seabright::Keys</a>
|
107
|
+
|
108
|
+
<li><a href="./Seabright/Keys/ClassMethods.html">Seabright::Keys::ClassMethods</a>
|
109
|
+
|
110
|
+
<li><a href="./Seabright/ObjectBase.html">Seabright::ObjectBase</a>
|
111
|
+
|
112
|
+
<li><a href="./Seabright/ObjectBase/ClassMethods.html">Seabright::ObjectBase::ClassMethods</a>
|
113
|
+
|
114
|
+
<li><a href="./Seabright/RedisObject.html">Seabright::RedisObject</a>
|
115
|
+
|
116
|
+
<li><a href="./Seabright/RedisObject.html">Seabright::RedisObject</a>
|
117
|
+
|
118
|
+
<li><a href="./Seabright/References.html">Seabright::References</a>
|
119
|
+
|
120
|
+
<li><a href="./Seabright/Storage.html">Seabright::Storage</a>
|
121
|
+
|
122
|
+
<li><a href="./Seabright/Storage/ClassMethods.html">Seabright::Storage::ClassMethods</a>
|
123
|
+
|
124
|
+
<li><a href="./Seabright/Storage/MySQL.html">Seabright::Storage::MySQL</a>
|
125
|
+
|
126
|
+
<li><a href="./Seabright/Storage/Redis.html">Seabright::Storage::Redis</a>
|
127
|
+
|
128
|
+
<li><a href="./Seabright/Template.html">Seabright::Template</a>
|
129
|
+
|
130
|
+
<li><a href="./Seabright/Template/ClassMethods.html">Seabright::Template::ClassMethods</a>
|
131
|
+
|
132
|
+
<li><a href="./Seabright/Timestamps.html">Seabright::Timestamps</a>
|
133
|
+
|
134
|
+
<li><a href="./Seabright/Timestamps/ClassMethods.html">Seabright::Timestamps::ClassMethods</a>
|
135
|
+
|
136
|
+
<li><a href="./Seabright/Types.html">Seabright::Types</a>
|
137
|
+
|
138
|
+
<li><a href="./Seabright/Types/ClassMethods.html">Seabright::Types::ClassMethods</a>
|
139
|
+
|
140
|
+
<li><a href="./Object.html">Object</a>
|
141
|
+
|
142
|
+
<li><a href="./Seabright/RedisObject.html">Object::RedisObject</a>
|
143
|
+
|
144
|
+
</ul>
|
145
|
+
</nav>
|
146
|
+
|
147
|
+
</div>
|
148
|
+
</nav>
|
149
|
+
|
150
|
+
<div id="documentation">
|
151
|
+
<h1 class="module">module Seabright</h1>
|
152
|
+
|
153
|
+
<div id="description" class="description">
|
154
|
+
|
155
|
+
</div><!-- description -->
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
161
|
+
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
<!-- Methods -->
|
170
|
+
|
171
|
+
</section><!-- 5Buntitled-5D -->
|
172
|
+
|
173
|
+
</div><!-- documentation -->
|
174
|
+
|
175
|
+
|
176
|
+
<footer id="validator-badges">
|
177
|
+
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
178
|
+
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
|
179
|
+
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
180
|
+
</footer>
|
181
|
+
|