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.
Files changed (103) hide show
  1. data/.gitignore +0 -2
  2. data/Gemfile +0 -4
  3. data/README.markdown +15 -24
  4. data/Rakefile +0 -8
  5. data/doc/Object.html +185 -0
  6. data/doc/Seabright.html +181 -0
  7. data/doc/Seabright/Adapter.html +442 -0
  8. data/doc/Seabright/Collection.html +797 -0
  9. data/doc/Seabright/Collections.html +635 -0
  10. data/doc/Seabright/Collections/ClassMethods.html +212 -0
  11. data/doc/Seabright/ExternalIndex.html +217 -0
  12. data/doc/Seabright/History.html +382 -0
  13. data/doc/Seabright/History/ClassMethods.html +276 -0
  14. data/doc/Seabright/Indices.html +324 -0
  15. data/doc/Seabright/Indices/ClassMethods.html +348 -0
  16. data/doc/Seabright/Keys.html +314 -0
  17. data/doc/Seabright/Keys/ClassMethods.html +276 -0
  18. data/doc/Seabright/ObjectBase.html +852 -0
  19. data/doc/Seabright/ObjectBase/ClassMethods.html +677 -0
  20. data/doc/Seabright/RedisObject.html +230 -0
  21. data/doc/Seabright/References.html +280 -0
  22. data/doc/Seabright/Storage.html +252 -0
  23. data/doc/Seabright/Storage/ClassMethods.html +276 -0
  24. data/doc/Seabright/Storage/MySQL.html +442 -0
  25. data/doc/Seabright/Storage/Redis.html +218 -0
  26. data/doc/Seabright/Template.html +212 -0
  27. data/doc/Seabright/Template/ClassMethods.html +166 -0
  28. data/doc/Seabright/Timestamps.html +292 -0
  29. data/doc/Seabright/Timestamps/ClassMethods.html +214 -0
  30. data/doc/Seabright/Types.html +410 -0
  31. data/doc/Seabright/Types/ClassMethods.html +308 -0
  32. data/doc/created.rid +17 -0
  33. data/doc/images/add.png +0 -0
  34. data/doc/images/brick.png +0 -0
  35. data/doc/images/brick_link.png +0 -0
  36. data/doc/images/bug.png +0 -0
  37. data/doc/images/bullet_black.png +0 -0
  38. data/doc/images/bullet_toggle_minus.png +0 -0
  39. data/doc/images/bullet_toggle_plus.png +0 -0
  40. data/doc/images/date.png +0 -0
  41. data/doc/images/delete.png +0 -0
  42. data/doc/images/find.png +0 -0
  43. data/doc/images/loadingAnimation.gif +0 -0
  44. data/doc/images/macFFBgHack.png +0 -0
  45. data/doc/images/package.png +0 -0
  46. data/doc/images/page_green.png +0 -0
  47. data/doc/images/page_white_text.png +0 -0
  48. data/doc/images/page_white_width.png +0 -0
  49. data/doc/images/plugin.png +0 -0
  50. data/doc/images/ruby.png +0 -0
  51. data/doc/images/tag_blue.png +0 -0
  52. data/doc/images/tag_green.png +0 -0
  53. data/doc/images/transparent.png +0 -0
  54. data/doc/images/wrench.png +0 -0
  55. data/doc/images/wrench_orange.png +0 -0
  56. data/doc/images/zoom.png +0 -0
  57. data/doc/index.html +125 -0
  58. data/doc/js/darkfish.js +153 -0
  59. data/doc/js/jquery.js +18 -0
  60. data/doc/js/navigation.js +142 -0
  61. data/doc/js/search.js +94 -0
  62. data/doc/js/search_index.js +1 -0
  63. data/doc/js/searcher.js +228 -0
  64. data/doc/rdoc.css +543 -0
  65. data/doc/table_of_contents.html +394 -0
  66. data/lib/redis_object.rb +1 -11
  67. data/lib/redis_object/base.rb +60 -210
  68. data/lib/redis_object/collection.rb +100 -130
  69. data/lib/redis_object/defaults.rb +8 -21
  70. data/lib/redis_object/ext/filters.rb +16 -34
  71. data/lib/redis_object/ext/triggers.rb +13 -75
  72. data/lib/redis_object/{experimental/history.rb → history.rb} +0 -0
  73. data/lib/redis_object/indices.rb +39 -44
  74. data/lib/redis_object/keys.rb +4 -4
  75. data/lib/redis_object/storage.rb +1 -30
  76. data/lib/redis_object/storage/adapter.rb +3 -6
  77. data/lib/redis_object/storage/redis.rb +3 -98
  78. data/lib/redis_object/timestamps.rb +21 -42
  79. data/lib/redis_object/types.rb +30 -172
  80. data/lib/redis_object/version.rb +1 -1
  81. data/redis_object.gemspec +0 -1
  82. data/spec/base_spec.rb +6 -41
  83. data/spec/spec_helper.rb +1 -32
  84. metadata +116 -111
  85. data/.coveralls.yml +0 -1
  86. data/.travis.yml +0 -5
  87. data/lib/redis_object/ext/script_cache.rb +0 -92
  88. data/lib/redis_object/ext/shardable.rb +0 -18
  89. data/lib/redis_object/ext/view_caching.rb +0 -258
  90. data/lib/redis_object/ext/views.rb +0 -102
  91. data/lib/redis_object/inheritance_tracking.rb +0 -23
  92. data/spec/adapter_spec.rb +0 -43
  93. data/spec/benchmark_spec.rb +0 -46
  94. data/spec/collections_spec.rb +0 -144
  95. data/spec/defaults_spec.rb +0 -56
  96. data/spec/filters_spec.rb +0 -29
  97. data/spec/indices_spec.rb +0 -45
  98. data/spec/rename_class_spec.rb +0 -96
  99. data/spec/timestamp_spec.rb +0 -28
  100. data/spec/trigger_spec.rb +0 -51
  101. data/spec/types_spec.rb +0 -103
  102. data/spec/view_caching_spec.rb +0 -130
  103. data/spec/views_spec.rb +0 -72
@@ -0,0 +1,214 @@
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::Timestamps::ClassMethods - 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/timestamps.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+
60
+
61
+ <!-- Method Quickref -->
62
+ <nav id="method-list-section" class="section">
63
+ <h3 class="section-header">Methods</h3>
64
+
65
+ <ul class="link-list">
66
+
67
+ <li><a href="#method-i-time_matters_not-21">#time_matters_not!</a>
68
+
69
+ </ul>
70
+ </nav>
71
+
72
+ </div>
73
+
74
+ <div id="project-metadata">
75
+
76
+ <nav id="classindex-section" class="section project-section">
77
+ <h3 class="section-header">Class and Module Index</h3>
78
+
79
+ <ul class="link-list">
80
+
81
+ <li><a href="../../Seabright.html">Seabright</a>
82
+
83
+ <li><a href="../../Seabright/Adapter.html">Seabright::Adapter</a>
84
+
85
+ <li><a href="../../Seabright/Collection.html">Seabright::Collection</a>
86
+
87
+ <li><a href="../../Seabright/Collections.html">Seabright::Collections</a>
88
+
89
+ <li><a href="../../Seabright/Collections/ClassMethods.html">Seabright::Collections::ClassMethods</a>
90
+
91
+ <li><a href="../../Seabright/ExternalIndex.html">Seabright::ExternalIndex</a>
92
+
93
+ <li><a href="../../Seabright/History.html">Seabright::History</a>
94
+
95
+ <li><a href="../../Seabright/History/ClassMethods.html">Seabright::History::ClassMethods</a>
96
+
97
+ <li><a href="../../Seabright/Indices.html">Seabright::Indices</a>
98
+
99
+ <li><a href="../../Seabright/Indices/ClassMethods.html">Seabright::Indices::ClassMethods</a>
100
+
101
+ <li><a href="../../Seabright/Keys.html">Seabright::Keys</a>
102
+
103
+ <li><a href="../../Seabright/Keys/ClassMethods.html">Seabright::Keys::ClassMethods</a>
104
+
105
+ <li><a href="../../Seabright/ObjectBase.html">Seabright::ObjectBase</a>
106
+
107
+ <li><a href="../../Seabright/ObjectBase/ClassMethods.html">Seabright::ObjectBase::ClassMethods</a>
108
+
109
+ <li><a href="../../Seabright/RedisObject.html">Seabright::RedisObject</a>
110
+
111
+ <li><a href="../../Seabright/RedisObject.html">Seabright::RedisObject</a>
112
+
113
+ <li><a href="../../Seabright/References.html">Seabright::References</a>
114
+
115
+ <li><a href="../../Seabright/Storage.html">Seabright::Storage</a>
116
+
117
+ <li><a href="../../Seabright/Storage/ClassMethods.html">Seabright::Storage::ClassMethods</a>
118
+
119
+ <li><a href="../../Seabright/Storage/MySQL.html">Seabright::Storage::MySQL</a>
120
+
121
+ <li><a href="../../Seabright/Storage/Redis.html">Seabright::Storage::Redis</a>
122
+
123
+ <li><a href="../../Seabright/Template.html">Seabright::Template</a>
124
+
125
+ <li><a href="../../Seabright/Template/ClassMethods.html">Seabright::Template::ClassMethods</a>
126
+
127
+ <li><a href="../../Seabright/Timestamps.html">Seabright::Timestamps</a>
128
+
129
+ <li><a href="../../Seabright/Timestamps/ClassMethods.html">Seabright::Timestamps::ClassMethods</a>
130
+
131
+ <li><a href="../../Seabright/Types.html">Seabright::Types</a>
132
+
133
+ <li><a href="../../Seabright/Types/ClassMethods.html">Seabright::Types::ClassMethods</a>
134
+
135
+ <li><a href="../../Object.html">Object</a>
136
+
137
+ <li><a href="../../Seabright/RedisObject.html">Object::RedisObject</a>
138
+
139
+ </ul>
140
+ </nav>
141
+
142
+ </div>
143
+ </nav>
144
+
145
+ <div id="documentation">
146
+ <h1 class="module">module Seabright::Timestamps::ClassMethods</h1>
147
+
148
+ <div id="description" class="description">
149
+
150
+ </div><!-- description -->
151
+
152
+
153
+
154
+
155
+ <section id="5Buntitled-5D" class="documentation-section">
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+ <!-- Methods -->
165
+
166
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
167
+ <h3 class="section-header">Public Instance Methods</h3>
168
+
169
+
170
+ <div id="method-i-time_matters_not-21" class="method-detail ">
171
+
172
+ <div class="method-heading">
173
+ <span class="method-name">time_matters_not!</span><span
174
+ class="method-args">()</span>
175
+ <span class="method-click-advice">click to toggle source</span>
176
+ </div>
177
+
178
+
179
+ <div class="method-description">
180
+
181
+
182
+
183
+
184
+
185
+ <div class="method-source-code" id="time_matters_not-21-source">
186
+ <pre><span class="ruby-comment"># File lib/redis_object/timestamps.rb, line 17</span>
187
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">time_matters_not!</span>
188
+ <span class="ruby-identifier">@@time_irrelevant</span> = <span class="ruby-keyword">true</span>
189
+ <span class="ruby-identifier">@@sort_indices</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-value">:created_at</span>)
190
+ <span class="ruby-identifier">@@sort_indices</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-value">:updated_at</span>)
191
+ <span class="ruby-keyword">end</span></pre>
192
+ </div><!-- time_matters_not-21-source -->
193
+
194
+ </div>
195
+
196
+
197
+
198
+
199
+ </div><!-- time_matters_not-21-method -->
200
+
201
+
202
+ </section><!-- public-instance-method-details -->
203
+
204
+ </section><!-- 5Buntitled-5D -->
205
+
206
+ </div><!-- documentation -->
207
+
208
+
209
+ <footer id="validator-badges">
210
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
211
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
212
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
213
+ </footer>
214
+
@@ -0,0 +1,410 @@
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::Types - 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/types.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+
60
+
61
+ <!-- Method Quickref -->
62
+ <nav id="method-list-section" class="section">
63
+ <h3 class="section-header">Methods</h3>
64
+
65
+ <ul class="link-list">
66
+
67
+ <li><a href="#method-c-included">::included</a>
68
+
69
+ <li><a href="#method-i-enforce_format">#enforce_format</a>
70
+
71
+ <li><a href="#method-i-format_array">#format_array</a>
72
+
73
+ <li><a href="#method-i-format_boolean">#format_boolean</a>
74
+
75
+ <li><a href="#method-i-format_date">#format_date</a>
76
+
77
+ <li><a href="#method-i-format_number">#format_number</a>
78
+
79
+ <li><a href="#method-i-get">#get</a>
80
+
81
+ </ul>
82
+ </nav>
83
+
84
+ </div>
85
+
86
+ <div id="project-metadata">
87
+
88
+ <nav id="classindex-section" class="section project-section">
89
+ <h3 class="section-header">Class and Module Index</h3>
90
+
91
+ <ul class="link-list">
92
+
93
+ <li><a href="../Seabright.html">Seabright</a>
94
+
95
+ <li><a href="../Seabright/Adapter.html">Seabright::Adapter</a>
96
+
97
+ <li><a href="../Seabright/Collection.html">Seabright::Collection</a>
98
+
99
+ <li><a href="../Seabright/Collections.html">Seabright::Collections</a>
100
+
101
+ <li><a href="../Seabright/Collections/ClassMethods.html">Seabright::Collections::ClassMethods</a>
102
+
103
+ <li><a href="../Seabright/ExternalIndex.html">Seabright::ExternalIndex</a>
104
+
105
+ <li><a href="../Seabright/History.html">Seabright::History</a>
106
+
107
+ <li><a href="../Seabright/History/ClassMethods.html">Seabright::History::ClassMethods</a>
108
+
109
+ <li><a href="../Seabright/Indices.html">Seabright::Indices</a>
110
+
111
+ <li><a href="../Seabright/Indices/ClassMethods.html">Seabright::Indices::ClassMethods</a>
112
+
113
+ <li><a href="../Seabright/Keys.html">Seabright::Keys</a>
114
+
115
+ <li><a href="../Seabright/Keys/ClassMethods.html">Seabright::Keys::ClassMethods</a>
116
+
117
+ <li><a href="../Seabright/ObjectBase.html">Seabright::ObjectBase</a>
118
+
119
+ <li><a href="../Seabright/ObjectBase/ClassMethods.html">Seabright::ObjectBase::ClassMethods</a>
120
+
121
+ <li><a href="../Seabright/RedisObject.html">Seabright::RedisObject</a>
122
+
123
+ <li><a href="../Seabright/RedisObject.html">Seabright::RedisObject</a>
124
+
125
+ <li><a href="../Seabright/References.html">Seabright::References</a>
126
+
127
+ <li><a href="../Seabright/Storage.html">Seabright::Storage</a>
128
+
129
+ <li><a href="../Seabright/Storage/ClassMethods.html">Seabright::Storage::ClassMethods</a>
130
+
131
+ <li><a href="../Seabright/Storage/MySQL.html">Seabright::Storage::MySQL</a>
132
+
133
+ <li><a href="../Seabright/Storage/Redis.html">Seabright::Storage::Redis</a>
134
+
135
+ <li><a href="../Seabright/Template.html">Seabright::Template</a>
136
+
137
+ <li><a href="../Seabright/Template/ClassMethods.html">Seabright::Template::ClassMethods</a>
138
+
139
+ <li><a href="../Seabright/Timestamps.html">Seabright::Timestamps</a>
140
+
141
+ <li><a href="../Seabright/Timestamps/ClassMethods.html">Seabright::Timestamps::ClassMethods</a>
142
+
143
+ <li><a href="../Seabright/Types.html">Seabright::Types</a>
144
+
145
+ <li><a href="../Seabright/Types/ClassMethods.html">Seabright::Types::ClassMethods</a>
146
+
147
+ <li><a href="../Object.html">Object</a>
148
+
149
+ <li><a href="../Seabright/RedisObject.html">Object::RedisObject</a>
150
+
151
+ </ul>
152
+ </nav>
153
+
154
+ </div>
155
+ </nav>
156
+
157
+ <div id="documentation">
158
+ <h1 class="module">module Seabright::Types</h1>
159
+
160
+ <div id="description" class="description">
161
+
162
+ </div><!-- description -->
163
+
164
+
165
+
166
+
167
+ <section id="5Buntitled-5D" class="documentation-section">
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176
+ <!-- Methods -->
177
+
178
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section section">
179
+ <h3 class="section-header">Public Class Methods</h3>
180
+
181
+
182
+ <div id="method-c-included" class="method-detail ">
183
+
184
+ <div class="method-heading">
185
+ <span class="method-name">included</span><span
186
+ class="method-args">(base)</span>
187
+ <span class="method-click-advice">click to toggle source</span>
188
+ </div>
189
+
190
+
191
+ <div class="method-description">
192
+
193
+
194
+
195
+
196
+
197
+ <div class="method-source-code" id="included-source">
198
+ <pre><span class="ruby-comment"># File lib/redis_object/types.rb, line 52</span>
199
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">included</span>(<span class="ruby-identifier">base</span>)
200
+ <span class="ruby-identifier">base</span>.<span class="ruby-identifier">extend</span>(<span class="ruby-constant">ClassMethods</span>)
201
+ <span class="ruby-keyword">end</span></pre>
202
+ </div><!-- included-source -->
203
+
204
+ </div>
205
+
206
+
207
+
208
+
209
+ </div><!-- included-method -->
210
+
211
+
212
+ </section><!-- public-class-method-details -->
213
+
214
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
215
+ <h3 class="section-header">Public Instance Methods</h3>
216
+
217
+
218
+ <div id="method-i-enforce_format" class="method-detail ">
219
+
220
+ <div class="method-heading">
221
+ <span class="method-name">enforce_format</span><span
222
+ class="method-args">(k,v)</span>
223
+ <span class="method-click-advice">click to toggle source</span>
224
+ </div>
225
+
226
+
227
+ <div class="method-description">
228
+
229
+
230
+
231
+
232
+
233
+ <div class="method-source-code" id="enforce_format-source">
234
+ <pre><span class="ruby-comment"># File lib/redis_object/types.rb, line 6</span>
235
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">enforce_format</span>(<span class="ruby-identifier">k</span>,<span class="ruby-identifier">v</span>)
236
+ <span class="ruby-identifier">v</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">@@field_formats</span>[<span class="ruby-identifier">k</span>.<span class="ruby-identifier">to_sym</span>] <span class="ruby-operator">?</span> <span class="ruby-identifier">send</span>(<span class="ruby-identifier">@@field_formats</span>[<span class="ruby-identifier">k</span>.<span class="ruby-identifier">to_sym</span>],<span class="ruby-identifier">v</span>) <span class="ruby-operator">:</span> <span class="ruby-identifier">v</span>
237
+ <span class="ruby-keyword">end</span></pre>
238
+ </div><!-- enforce_format-source -->
239
+
240
+ </div>
241
+
242
+
243
+
244
+
245
+ </div><!-- enforce_format-method -->
246
+
247
+
248
+ <div id="method-i-format_array" class="method-detail ">
249
+
250
+ <div class="method-heading">
251
+ <span class="method-name">format_array</span><span
252
+ class="method-args">(val)</span>
253
+ <span class="method-click-advice">click to toggle source</span>
254
+ </div>
255
+
256
+
257
+ <div class="method-description">
258
+
259
+
260
+
261
+
262
+
263
+ <div class="method-source-code" id="format_array-source">
264
+ <pre><span class="ruby-comment"># File lib/redis_object/types.rb, line 14</span>
265
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">format_array</span>(<span class="ruby-identifier">val</span>)
266
+ <span class="ruby-identifier">eval</span> <span class="ruby-identifier">val</span>
267
+ <span class="ruby-keyword">end</span></pre>
268
+ </div><!-- format_array-source -->
269
+
270
+ </div>
271
+
272
+
273
+
274
+
275
+ </div><!-- format_array-method -->
276
+
277
+
278
+ <div id="method-i-format_boolean" class="method-detail ">
279
+
280
+ <div class="method-heading">
281
+ <span class="method-name">format_boolean</span><span
282
+ class="method-args">(val)</span>
283
+ <span class="method-click-advice">click to toggle source</span>
284
+ </div>
285
+
286
+
287
+ <div class="method-description">
288
+
289
+
290
+
291
+
292
+
293
+ <div class="method-source-code" id="format_boolean-source">
294
+ <pre><span class="ruby-comment"># File lib/redis_object/types.rb, line 22</span>
295
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">format_boolean</span>(<span class="ruby-identifier">val</span>)
296
+ <span class="ruby-operator">!</span><span class="ruby-operator">!</span><span class="ruby-identifier">val</span>
297
+ <span class="ruby-keyword">end</span></pre>
298
+ </div><!-- format_boolean-source -->
299
+
300
+ </div>
301
+
302
+
303
+
304
+
305
+ </div><!-- format_boolean-method -->
306
+
307
+
308
+ <div id="method-i-format_date" class="method-detail ">
309
+
310
+ <div class="method-heading">
311
+ <span class="method-name">format_date</span><span
312
+ class="method-args">(val)</span>
313
+ <span class="method-click-advice">click to toggle source</span>
314
+ </div>
315
+
316
+
317
+ <div class="method-description">
318
+
319
+
320
+
321
+
322
+
323
+ <div class="method-source-code" id="format_date-source">
324
+ <pre><span class="ruby-comment"># File lib/redis_object/types.rb, line 10</span>
325
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">format_date</span>(<span class="ruby-identifier">val</span>)
326
+ <span class="ruby-identifier">val</span>.<span class="ruby-identifier">instance_of?</span>(<span class="ruby-constant">DateTime</span>) <span class="ruby-operator">?</span> <span class="ruby-identifier">val</span> <span class="ruby-operator">:</span> <span class="ruby-constant">DateTime</span>.<span class="ruby-identifier">parse</span>(<span class="ruby-identifier">val</span>)
327
+ <span class="ruby-keyword">end</span></pre>
328
+ </div><!-- format_date-source -->
329
+
330
+ </div>
331
+
332
+
333
+
334
+
335
+ </div><!-- format_date-method -->
336
+
337
+
338
+ <div id="method-i-format_number" class="method-detail ">
339
+
340
+ <div class="method-heading">
341
+ <span class="method-name">format_number</span><span
342
+ class="method-args">(val)</span>
343
+ <span class="method-click-advice">click to toggle source</span>
344
+ </div>
345
+
346
+
347
+ <div class="method-description">
348
+
349
+
350
+
351
+
352
+
353
+ <div class="method-source-code" id="format_number-source">
354
+ <pre><span class="ruby-comment"># File lib/redis_object/types.rb, line 18</span>
355
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">format_number</span>(<span class="ruby-identifier">val</span>)
356
+ <span class="ruby-identifier">val</span>.<span class="ruby-identifier">to_i</span>
357
+ <span class="ruby-keyword">end</span></pre>
358
+ </div><!-- format_number-source -->
359
+
360
+ </div>
361
+
362
+
363
+
364
+
365
+ </div><!-- format_number-method -->
366
+
367
+
368
+ <div id="method-i-get" class="method-detail ">
369
+
370
+ <div class="method-heading">
371
+ <span class="method-name">get</span><span
372
+ class="method-args">(k)</span>
373
+ <span class="method-click-advice">click to toggle source</span>
374
+ </div>
375
+
376
+
377
+ <div class="method-description">
378
+
379
+
380
+
381
+
382
+
383
+ <div class="method-source-code" id="get-source">
384
+ <pre><span class="ruby-comment"># File lib/redis_object/types.rb, line 26</span>
385
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">get</span>(<span class="ruby-identifier">k</span>)
386
+ <span class="ruby-identifier">enforce_format</span>(<span class="ruby-identifier">k</span>,<span class="ruby-keyword">super</span>(<span class="ruby-identifier">k</span>))
387
+ <span class="ruby-keyword">end</span></pre>
388
+ </div><!-- get-source -->
389
+
390
+ </div>
391
+
392
+
393
+
394
+
395
+ </div><!-- get-method -->
396
+
397
+
398
+ </section><!-- public-instance-method-details -->
399
+
400
+ </section><!-- 5Buntitled-5D -->
401
+
402
+ </div><!-- documentation -->
403
+
404
+
405
+ <footer id="validator-badges">
406
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
407
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
408
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
409
+ </footer>
410
+