stacked 0.5.0 → 1.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. data/.gitignore +3 -0
  2. data/Gemfile +3 -1
  3. data/Gemfile.lock +43 -0
  4. data/LICENSE +1 -1
  5. data/README.markdown +58 -25
  6. data/Rakefile +6 -45
  7. data/genddoc.sh +4 -1
  8. data/lib/stacked.rb +11 -9
  9. data/lib/stacked/answer.rb +10 -27
  10. data/lib/stacked/badge.rb +15 -11
  11. data/lib/stacked/base.rb +59 -92
  12. data/lib/stacked/client.rb +31 -0
  13. data/lib/stacked/comment.rb +13 -18
  14. data/lib/stacked/parser.rb +47 -0
  15. data/lib/stacked/post_timeline.rb +17 -0
  16. data/lib/stacked/question.rb +52 -51
  17. data/lib/stacked/{reputation.rb → rep_change.rb} +5 -3
  18. data/lib/stacked/tag.rb +10 -2
  19. data/lib/stacked/user.rb +29 -161
  20. data/lib/stacked/{usertimeline.rb → user_timeline.rb} +5 -5
  21. data/lib/stacked/version.rb +4 -0
  22. data/spec/fakes/answers/1237127 +0 -0
  23. data/spec/fakes/answers/2272830 +0 -0
  24. data/spec/fakes/answers/2558700 +0 -0
  25. data/spec/fakes/badges/index +0 -0
  26. data/spec/fakes/badges/name +0 -0
  27. data/spec/fakes/badges/tags +0 -0
  28. data/spec/fakes/comments/1063043 +0 -0
  29. data/spec/fakes/comments/2561833 +0 -0
  30. data/spec/fakes/questions/1236996 +0 -0
  31. data/spec/fakes/questions/1236996-answers +0 -0
  32. data/spec/fakes/questions/1236996-comments +0 -0
  33. data/spec/fakes/questions/1236996-timeline +0 -0
  34. data/spec/fakes/questions/4839321/answers +0 -0
  35. data/spec/fakes/questions/index +0 -0
  36. data/spec/fakes/questions/search +0 -0
  37. data/spec/fakes/questions/tagged +0 -0
  38. data/spec/fakes/questions/unanswered +0 -0
  39. data/spec/fakes/questions/withcomments +0 -0
  40. data/spec/fakes/stats/index +0 -0
  41. data/spec/fakes/tags/activity +0 -0
  42. data/spec/fakes/tags/index +0 -0
  43. data/spec/fakes/tags/name +0 -0
  44. data/spec/fakes/tags/popular +0 -0
  45. data/spec/fakes/users/148722 +0 -0
  46. data/spec/fakes/users/148722-comments +0 -0
  47. data/spec/fakes/users/148722-comments-by-creation +0 -0
  48. data/spec/fakes/users/148722-comments-by-votes +0 -0
  49. data/spec/fakes/users/22656 +0 -0
  50. data/spec/fakes/users/22656-answers +0 -0
  51. data/spec/fakes/users/22656-answers-by-activity +0 -0
  52. data/spec/fakes/users/22656-answers-by-creation +0 -0
  53. data/spec/fakes/users/22656-answers-by-views +0 -0
  54. data/spec/fakes/users/22656-answers-by-votes +0 -0
  55. data/spec/fakes/users/22656-badges +0 -0
  56. data/spec/fakes/users/22656-comments-mentioning-by-creation +0 -0
  57. data/spec/fakes/users/22656-comments-mentioning-by-votes +0 -0
  58. data/spec/fakes/users/22656-favorites +0 -0
  59. data/spec/fakes/users/22656-favorites-by-activity +0 -0
  60. data/spec/fakes/users/22656-favorites-by-added +0 -0
  61. data/spec/fakes/users/22656-favorites-by-creation +0 -0
  62. data/spec/fakes/users/22656-favorites-by-views +0 -0
  63. data/spec/fakes/users/22656-mentioned +0 -0
  64. data/spec/fakes/users/22656-questions +0 -0
  65. data/spec/fakes/users/22656-questions-by-activity +0 -0
  66. data/spec/fakes/users/22656-questions-by-creation +0 -0
  67. data/spec/fakes/users/22656-questions-by-views +0 -0
  68. data/spec/fakes/users/22656-questions-by-votes +0 -0
  69. data/spec/fakes/users/22656-reputation +0 -0
  70. data/spec/fakes/users/22656-reputation-ranged +0 -0
  71. data/spec/fakes/users/22656-tags +0 -0
  72. data/spec/fakes/users/22656-timeline +0 -0
  73. data/spec/fakes/users/filter +0 -0
  74. data/spec/fakes/users/index +0 -0
  75. data/spec/fakes/users/index-page2 +0 -0
  76. data/spec/fakes/users/index-pagesize1 +0 -0
  77. data/spec/fakes/users/name +0 -0
  78. data/spec/fakes/users/newest +0 -0
  79. data/spec/fakes/users/oldest +0 -0
  80. data/spec/sorted_by_spec.rb +2 -2
  81. data/spec/spec_helper.rb +10 -8
  82. data/spec/stacked/answer_spec.rb +9 -8
  83. data/spec/stacked/badge_spec.rb +11 -3
  84. data/spec/stacked/base_spec.rb +24 -2
  85. data/spec/stacked/comment_spec.rb +11 -9
  86. data/spec/stacked/question_spec.rb +49 -61
  87. data/spec/stacked/{reputation_spec.rb → rep_change_spec.rb} +9 -5
  88. data/spec/stacked/tag_spec.rb +13 -6
  89. data/spec/stacked/user_spec.rb +99 -70
  90. data/spec/stacked/{usertimeline_spec.rb → user_timeline_spec.rb} +1 -1
  91. data/spec/support/fakes.rb +28 -0
  92. data/spec/support/{sorted_by.rb → matchers/sorted_by.rb} +7 -6
  93. data/spec/support/{within.rb → matchers/within.rb} +3 -3
  94. data/spec/within_spec.rb +2 -2
  95. data/stacked.gemspec +23 -112
  96. metadata +248 -54
  97. data/README.rdoc +0 -18
  98. data/VERSION +0 -1
  99. data/doc/Stacked.html +0 -155
  100. data/doc/Stacked/Answer.html +0 -1394
  101. data/doc/Stacked/Badge.html +0 -480
  102. data/doc/Stacked/Base.html +0 -1124
  103. data/doc/Stacked/Comment.html +0 -1037
  104. data/doc/Stacked/NotImplemented.html +0 -162
  105. data/doc/Stacked/Posttimeline.html +0 -543
  106. data/doc/Stacked/Question.html +0 -1763
  107. data/doc/Stacked/Reputation.html +0 -606
  108. data/doc/Stacked/Tag.html +0 -267
  109. data/doc/Stacked/User.html +0 -2787
  110. data/doc/Stacked/Usertimeline.html +0 -630
  111. data/doc/_index.html +0 -246
  112. data/doc/file.README.html +0 -54
  113. data/doc/index.html +0 -54
  114. data/doc/method_list.html +0 -1203
  115. data/doc/top-level-namespace.html +0 -87
  116. data/lib/stacked/posttimeline.rb +0 -10
@@ -1,246 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <meta name="Content-Type" content="text/html; charset=utf-8" />
6
- <title>Documentation by YARD 0.5.4</title>
7
- <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
8
- <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
9
-
10
- <script type="text/javascript" charset="utf-8">
11
- relpath = '';
12
- if (relpath != '') relpath += '/';
13
- </script>
14
- <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
15
- <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
16
-
17
- </head>
18
- <body>
19
- <script type="text/javascript" charset="utf-8">
20
- if (window.top.frames.main) document.body.className = 'frames';
21
- </script>
22
-
23
- <div id="header">
24
- <div id="menu">
25
-
26
-
27
- <span class="title"></span>
28
-
29
-
30
- <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
31
- </div>
32
-
33
- <div id="search">
34
- <a id="class_list_link" href="#">Class List</a>
35
- <a id="method_list_link" href="#">Method List</a>
36
- <a id ="file_list_link" href="#">File List</a>
37
- </div>
38
-
39
- <div class="clear"></div>
40
- </div>
41
-
42
- <iframe id="search_frame"></iframe>
43
-
44
- <div id="content"><div id="listing">
45
- <h1 class="noborder title">Documentation by YARD 0.5.4</h1>
46
- <h1 class="alphaindex">Alphabetic Index</h1>
47
-
48
-
49
- <h2>File Listing</h2>
50
- <ul id="files">
51
-
52
-
53
- <li class="r1"><a href="index.html" title="README">README</a></li>
54
-
55
-
56
- </ul>
57
-
58
- <div class="clear"></div>
59
-
60
- <h2>Namespace Listing A-Z</h2>
61
-
62
-
63
-
64
-
65
- <table>
66
- <tr>
67
- <td valign='top' width="33%">
68
-
69
-
70
- <ul id="alpha_A" class="alpha">
71
- <li class="letter">A</li>
72
- <ul>
73
-
74
- <li>
75
- <a href="Stacked/Answer.html" title="Stacked::Answer (class)">Answer</a>
76
-
77
- <small>(Stacked)</small>
78
-
79
- </li>
80
-
81
- </ul>
82
- </ul>
83
-
84
-
85
- <ul id="alpha_B" class="alpha">
86
- <li class="letter">B</li>
87
- <ul>
88
-
89
- <li>
90
- <a href="Stacked/Badge.html" title="Stacked::Badge (class)">Badge</a>
91
-
92
- <small>(Stacked)</small>
93
-
94
- </li>
95
-
96
- <li>
97
- <a href="Stacked/Base.html" title="Stacked::Base (class)">Base</a>
98
-
99
- <small>(Stacked)</small>
100
-
101
- </li>
102
-
103
- </ul>
104
- </ul>
105
-
106
-
107
- <ul id="alpha_C" class="alpha">
108
- <li class="letter">C</li>
109
- <ul>
110
-
111
- <li>
112
- <a href="Stacked/Comment.html" title="Stacked::Comment (class)">Comment</a>
113
-
114
- <small>(Stacked)</small>
115
-
116
- </li>
117
-
118
- </ul>
119
- </ul>
120
-
121
-
122
- <ul id="alpha_N" class="alpha">
123
- <li class="letter">N</li>
124
- <ul>
125
-
126
- <li>
127
- <a href="Stacked/NotImplemented.html" title="Stacked::NotImplemented (class)">NotImplemented</a>
128
-
129
- <small>(Stacked)</small>
130
-
131
- </li>
132
-
133
- </ul>
134
- </ul>
135
-
136
-
137
- <ul id="alpha_P" class="alpha">
138
- <li class="letter">P</li>
139
- <ul>
140
-
141
- <li>
142
- <a href="Stacked/Posttimeline.html" title="Stacked::Posttimeline (class)">Posttimeline</a>
143
-
144
- <small>(Stacked)</small>
145
-
146
- </li>
147
-
148
- </ul>
149
- </ul>
150
-
151
-
152
- <ul id="alpha_Q" class="alpha">
153
- <li class="letter">Q</li>
154
- <ul>
155
-
156
- <li>
157
- <a href="Stacked/Question.html" title="Stacked::Question (class)">Question</a>
158
-
159
- <small>(Stacked)</small>
160
-
161
- </li>
162
-
163
- </ul>
164
- </ul>
165
-
166
-
167
- <ul id="alpha_R" class="alpha">
168
- <li class="letter">R</li>
169
- <ul>
170
-
171
- <li>
172
- <a href="Stacked/Reputation.html" title="Stacked::Reputation (class)">Reputation</a>
173
-
174
- <small>(Stacked)</small>
175
-
176
- </li>
177
-
178
- </ul>
179
- </ul>
180
-
181
-
182
- </td><td valign='top' width="33%">
183
-
184
-
185
- <ul id="alpha_S" class="alpha">
186
- <li class="letter">S</li>
187
- <ul>
188
-
189
- <li>
190
- <a href="Stacked.html" title="Stacked (module)">Stacked</a>
191
-
192
- </li>
193
-
194
- </ul>
195
- </ul>
196
-
197
-
198
- <ul id="alpha_T" class="alpha">
199
- <li class="letter">T</li>
200
- <ul>
201
-
202
- <li>
203
- <a href="Stacked/Tag.html" title="Stacked::Tag (class)">Tag</a>
204
-
205
- <small>(Stacked)</small>
206
-
207
- </li>
208
-
209
- </ul>
210
- </ul>
211
-
212
-
213
- <ul id="alpha_U" class="alpha">
214
- <li class="letter">U</li>
215
- <ul>
216
-
217
- <li>
218
- <a href="Stacked/User.html" title="Stacked::User (class)">User</a>
219
-
220
- <small>(Stacked)</small>
221
-
222
- </li>
223
-
224
- <li>
225
- <a href="Stacked/Usertimeline.html" title="Stacked::Usertimeline (class)">Usertimeline</a>
226
-
227
- <small>(Stacked)</small>
228
-
229
- </li>
230
-
231
- </ul>
232
- </ul>
233
-
234
- </td>
235
- </tr>
236
- </table>
237
- </div></div>
238
-
239
- <div id="footer">
240
- Generated on Sun Apr 4 18:16:31 2010 by
241
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool">yard</a>
242
- 0.5.4 (ruby-1.8.7).
243
- </div>
244
-
245
- </body>
246
- </html>
@@ -1,54 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <meta name="Content-Type" content="text/html; charset=utf-8" />
6
- <title>Documentation by YARD 0.5.4</title>
7
- <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
8
- <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
9
-
10
- <script type="text/javascript" charset="utf-8">
11
- relpath = '';
12
- if (relpath != '') relpath += '/';
13
- </script>
14
- <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
15
- <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
16
-
17
- </head>
18
- <body>
19
- <script type="text/javascript" charset="utf-8">
20
- if (window.top.frames.main) document.body.className = 'frames';
21
- </script>
22
-
23
- <div id="header">
24
- <div id="menu">
25
-
26
- <a href="_index.html" title="Index">Index</a> &raquo;
27
- <span class="title">File: README</span>
28
-
29
-
30
- <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
31
- </div>
32
-
33
- <div id="search">
34
- <a id="class_list_link" href="#">Class List</a>
35
- <a id="method_list_link" href="#">Method List</a>
36
- <a id ="file_list_link" href="#">File List</a>
37
- </div>
38
-
39
- <div class="clear"></div>
40
- </div>
41
-
42
- <iframe id="search_frame"></iframe>
43
-
44
- <div id="content"><div id='filecontents'><h1>Stacked &#8211; A Ruby wrapper for the Stack Overflow <span class="caps">API</span> (v0.5)</h1>
45
- <p>This library is built around the Stack Overflow (private) <span class="caps">API</span> <a href="http://blog.stackoverflow.com/2010/03/stack-overflow-api-private-beta-starts/">described here</a>. I am under the impression that it covers all the <span class="caps">API</span> methods described in <a href="http://dev.meta.stackoverflow.com/questions/34594/overall-api-method-list">this comprehensive listing</a>, but equally aware that this is a first-draft and I am likely to make a mistake or four.</p></div></div>
46
-
47
- <div id="footer">
48
- Generated on Sun Apr 4 18:16:31 2010 by
49
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool">yard</a>
50
- 0.5.4 (ruby-1.8.7).
51
- </div>
52
-
53
- </body>
54
- </html>
@@ -1,54 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <meta name="Content-Type" content="text/html; charset=utf-8" />
6
- <title>Documentation by YARD 0.5.4</title>
7
- <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
8
- <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
9
-
10
- <script type="text/javascript" charset="utf-8">
11
- relpath = '';
12
- if (relpath != '') relpath += '/';
13
- </script>
14
- <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
15
- <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
16
-
17
- </head>
18
- <body>
19
- <script type="text/javascript" charset="utf-8">
20
- if (window.top.frames.main) document.body.className = 'frames';
21
- </script>
22
-
23
- <div id="header">
24
- <div id="menu">
25
-
26
- <a href="_index.html" title="Index">Index</a> &raquo;
27
- <span class="title">File: README</span>
28
-
29
-
30
- <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
31
- </div>
32
-
33
- <div id="search">
34
- <a id="class_list_link" href="#">Class List</a>
35
- <a id="method_list_link" href="#">Method List</a>
36
- <a id ="file_list_link" href="#">File List</a>
37
- </div>
38
-
39
- <div class="clear"></div>
40
- </div>
41
-
42
- <iframe id="search_frame"></iframe>
43
-
44
- <div id="content"><div id='filecontents'><h1>Stacked &#8211; A Ruby wrapper for the Stack Overflow <span class="caps">API</span> (v0.5)</h1>
45
- <p>This library is built around the Stack Overflow (private) <span class="caps">API</span> <a href="http://blog.stackoverflow.com/2010/03/stack-overflow-api-private-beta-starts/">described here</a>. I am under the impression that it covers all the <span class="caps">API</span> methods described in <a href="http://dev.meta.stackoverflow.com/questions/34594/overall-api-method-list">this comprehensive listing</a>, but equally aware that this is a first-draft and I am likely to make a mistake or four.</p></div></div>
46
-
47
- <div id="footer">
48
- Generated on Sun Apr 4 18:16:31 2010 by
49
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool">yard</a>
50
- 0.5.4 (ruby-1.8.7).
51
- </div>
52
-
53
- </body>
54
- </html>
@@ -1,1203 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
- <html>
4
- <head>
5
- <meta name="Content-Type" content="text/html; charset=utf-8" />
6
- <link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
7
- <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
8
- <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
9
- <script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
10
- <base id="base_target" target="_parent" />
11
- </head>
12
- <body>
13
- <script type="text/javascript" charset="utf-8">
14
- if (window.top.frames.main) {
15
- document.getElementById('base_target').target = 'main';
16
- document.body.className = 'frames';
17
- }
18
- </script>
19
- <div id="content">
20
- <h1 id="full_list_header">Method List</h1>
21
- <div id="nav">
22
- <a target="_self" href="class_list.html">Classes</a> |
23
- <a target="_self" href="method_list.html">Methods</a> |
24
- <a target="_self" href="file_list.html">Files</a>
25
- </div>
26
- <div id="search">Search: <input type="text" /></div>
27
-
28
- <ul id="full_list" class="methods">
29
-
30
-
31
- <li class="r1 ">
32
- <a href="Stacked/User.html#about_me-instance_method" title="Stacked::User#about_me (method)">#about_me</a>
33
-
34
- <small>Stacked::User</small>
35
-
36
- </li>
37
-
38
-
39
- <li class="r2 ">
40
- <a href="Stacked/User.html#accept_rate-instance_method" title="Stacked::User#accept_rate (method)">#accept_rate</a>
41
-
42
- <small>Stacked::User</small>
43
-
44
- </li>
45
-
46
-
47
- <li class="r1 ">
48
- <a href="Stacked/Answer.html#accepted-instance_method" title="Stacked::Answer#accepted (method)">#accepted</a>
49
-
50
- <small>Stacked::Answer</small>
51
-
52
- </li>
53
-
54
-
55
- <li class="r2 ">
56
- <a href="Stacked/Question.html#accepted_answer-instance_method" title="Stacked::Question#accepted_answer (method)">#accepted_answer</a>
57
-
58
- <small>Stacked::Question</small>
59
-
60
- </li>
61
-
62
-
63
- <li class="r1 ">
64
- <a href="Stacked/Question.html#accepted_answer_id-instance_method" title="Stacked::Question#accepted_answer_id (method)">#accepted_answer_id</a>
65
-
66
- <small>Stacked::Question</small>
67
-
68
- </li>
69
-
70
-
71
- <li class="r2 ">
72
- <a href="Stacked/Usertimeline.html#action-instance_method" title="Stacked::Usertimeline#action (method)">#action</a>
73
-
74
- <small>Stacked::Usertimeline</small>
75
-
76
- </li>
77
-
78
-
79
- <li class="r1 ">
80
- <a href="Stacked/Posttimeline.html#action-instance_method" title="Stacked::Posttimeline#action (method)">#action</a>
81
-
82
- <small>Stacked::Posttimeline</small>
83
-
84
- </li>
85
-
86
-
87
- <li class="r2 ">
88
- <a href="Stacked/Posttimeline.html#action_user_id-instance_method" title="Stacked::Posttimeline#action_user_id (method)">#action_user_id</a>
89
-
90
- <small>Stacked::Posttimeline</small>
91
-
92
- </li>
93
-
94
-
95
- <li class="r1 ">
96
- <a href="Stacked/User.html#added_favorites-instance_method" title="Stacked::User#added_favorites (method)">#added_favorites</a>
97
-
98
- <small>Stacked::User</small>
99
-
100
- </li>
101
-
102
-
103
- <li class="r2 ">
104
- <a href="Stacked/User.html#age-instance_method" title="Stacked::User#age (method)">#age</a>
105
-
106
- <small>Stacked::User</small>
107
-
108
- </li>
109
-
110
-
111
- <li class="r1 ">
112
- <a href="Stacked/Base.html#all-class_method" title="Stacked::Base.all (method)">all</a>
113
-
114
- <small>Stacked::Base</small>
115
-
116
- </li>
117
-
118
-
119
- <li class="r2 ">
120
- <a href="Stacked/Comment.html#all-class_method" title="Stacked::Comment.all (method)">all</a>
121
-
122
- <small>Stacked::Comment</small>
123
-
124
- </li>
125
-
126
-
127
- <li class="r1 ">
128
- <a href="Stacked/Answer.html#all-class_method" title="Stacked::Answer.all (method)">all</a>
129
-
130
- <small>Stacked::Answer</small>
131
-
132
- </li>
133
-
134
-
135
- <li class="r2 ">
136
- <a href="Stacked/User.html#answer_count-instance_method" title="Stacked::User#answer_count (method)">#answer_count</a>
137
-
138
- <small>Stacked::User</small>
139
-
140
- </li>
141
-
142
-
143
- <li class="r1 ">
144
- <a href="Stacked/Question.html#answer_count-instance_method" title="Stacked::Question#answer_count (method)">#answer_count</a>
145
-
146
- <small>Stacked::Question</small>
147
-
148
- </li>
149
-
150
-
151
- <li class="r2 ">
152
- <a href="Stacked/Answer.html#answer_id-instance_method" title="Stacked::Answer#answer_id (method)">#answer_id</a>
153
-
154
- <small>Stacked::Answer</small>
155
-
156
- </li>
157
-
158
-
159
- <li class="r1 ">
160
- <a href="Stacked/Question.html#answers-instance_method" title="Stacked::Question#answers (method)">#answers</a>
161
-
162
- <small>Stacked::Question</small>
163
-
164
- </li>
165
-
166
-
167
- <li class="r2 ">
168
- <a href="Stacked/User.html#answers-instance_method" title="Stacked::User#answers (method)">#answers</a>
169
-
170
- <small>Stacked::User</small>
171
-
172
- </li>
173
-
174
-
175
- <li class="r1 ">
176
- <a href="Stacked/User.html#answers_by_views-instance_method" title="Stacked::User#answers_by_views (method)">#answers_by_views</a>
177
-
178
- <small>Stacked::User</small>
179
-
180
- </li>
181
-
182
-
183
- <li class="r2 ">
184
- <a href="Stacked/User.html#answers_by_votes-instance_method" title="Stacked::User#answers_by_votes (method)">#answers_by_votes</a>
185
-
186
- <small>Stacked::User</small>
187
-
188
- </li>
189
-
190
-
191
- <li class="r1 ">
192
- <a href="Stacked/Base.html#association-class_method" title="Stacked::Base.association (method)">association</a>
193
-
194
- <small>Stacked::Base</small>
195
-
196
- </li>
197
-
198
-
199
- <li class="r2 ">
200
- <a href="Stacked.html#autoload-class_method" title="Stacked.autoload (method)">autoload</a>
201
-
202
- <small>Stacked</small>
203
-
204
- </li>
205
-
206
-
207
- <li class="r1 ">
208
- <a href="Stacked/Badge.html#award_count-instance_method" title="Stacked::Badge#award_count (method)">#award_count</a>
209
-
210
- <small>Stacked::Badge</small>
211
-
212
- </li>
213
-
214
-
215
- <li class="r2 ">
216
- <a href="Stacked/Badge.html#badge_id-instance_method" title="Stacked::Badge#badge_id (method)">#badge_id</a>
217
-
218
- <small>Stacked::Badge</small>
219
-
220
- </li>
221
-
222
-
223
- <li class="r1 ">
224
- <a href="Stacked/User.html#badges-instance_method" title="Stacked::User#badges (method)">#badges</a>
225
-
226
- <small>Stacked::User</small>
227
-
228
- </li>
229
-
230
-
231
- <li class="r2 ">
232
- <a href="Stacked/Comment.html#body-instance_method" title="Stacked::Comment#body (method)">#body</a>
233
-
234
- <small>Stacked::Comment</small>
235
-
236
- </li>
237
-
238
-
239
- <li class="r1 ">
240
- <a href="Stacked/Question.html#body-instance_method" title="Stacked::Question#body (method)">#body</a>
241
-
242
- <small>Stacked::Question</small>
243
-
244
- </li>
245
-
246
-
247
- <li class="r2 ">
248
- <a href="Stacked/Answer.html#body-instance_method" title="Stacked::Answer#body (method)">#body</a>
249
-
250
- <small>Stacked::Answer</small>
251
-
252
- </li>
253
-
254
-
255
- <li class="r1 ">
256
- <a href="Stacked/Question.html#bounty_closes_date-instance_method" title="Stacked::Question#bounty_closes_date (method)">#bounty_closes_date</a>
257
-
258
- <small>Stacked::Question</small>
259
-
260
- </li>
261
-
262
-
263
- <li class="r2 ">
264
- <a href="Stacked/Badge.html#class-instance_method" title="Stacked::Badge#class (method)">#class</a>
265
-
266
- <small>Stacked::Badge</small>
267
-
268
- </li>
269
-
270
-
271
- <li class="r1 ">
272
- <a href="Stacked/Base.html#collection-class_method" title="Stacked::Base.collection (method)">collection</a>
273
-
274
- <small>Stacked::Base</small>
275
-
276
- </li>
277
-
278
-
279
- <li class="r2 ">
280
- <a href="Stacked/Usertimeline.html#comment_id-instance_method" title="Stacked::Usertimeline#comment_id (method)">#comment_id</a>
281
-
282
- <small>Stacked::Usertimeline</small>
283
-
284
- </li>
285
-
286
-
287
- <li class="r1 ">
288
- <a href="Stacked/Comment.html#comment_id-instance_method" title="Stacked::Comment#comment_id (method)">#comment_id</a>
289
-
290
- <small>Stacked::Comment</small>
291
-
292
- </li>
293
-
294
-
295
- <li class="r2 ">
296
- <a href="Stacked/Answer.html#comments-instance_method" title="Stacked::Answer#comments (method)">#comments</a>
297
-
298
- <small>Stacked::Answer</small>
299
-
300
- </li>
301
-
302
-
303
- <li class="r1 ">
304
- <a href="Stacked/User.html#comments-instance_method" title="Stacked::User#comments (method)">#comments</a>
305
-
306
- <small>Stacked::User</small>
307
-
308
- </li>
309
-
310
-
311
- <li class="r2 ">
312
- <a href="Stacked/User.html#comments_by_score-instance_method" title="Stacked::User#comments_by_score (method)">#comments_by_score</a>
313
-
314
- <small>Stacked::User</small>
315
-
316
- </li>
317
-
318
-
319
- <li class="r1 ">
320
- <a href="Stacked/Question.html#community_owned-instance_method" title="Stacked::Question#community_owned (method)">#community_owned</a>
321
-
322
- <small>Stacked::Question</small>
323
-
324
- </li>
325
-
326
-
327
- <li class="r2 ">
328
- <a href="Stacked/Answer.html#community_owned-instance_method" title="Stacked::Answer#community_owned (method)">#community_owned</a>
329
-
330
- <small>Stacked::Answer</small>
331
-
332
- </li>
333
-
334
-
335
- <li class="r1 ">
336
- <a href="Stacked/Tag.html#count-instance_method" title="Stacked::Tag#count (method)">#count</a>
337
-
338
- <small>Stacked::Tag</small>
339
-
340
- </li>
341
-
342
-
343
- <li class="r2 ">
344
- <a href="Stacked/Posttimeline.html#creation_date-instance_method" title="Stacked::Posttimeline#creation_date (method)">#creation_date</a>
345
-
346
- <small>Stacked::Posttimeline</small>
347
-
348
- </li>
349
-
350
-
351
- <li class="r1 ">
352
- <a href="Stacked/User.html#creation_date-instance_method" title="Stacked::User#creation_date (method)">#creation_date</a>
353
-
354
- <small>Stacked::User</small>
355
-
356
- </li>
357
-
358
-
359
- <li class="r2 ">
360
- <a href="Stacked/Answer.html#creation_date-instance_method" title="Stacked::Answer#creation_date (method)">#creation_date</a>
361
-
362
- <small>Stacked::Answer</small>
363
-
364
- </li>
365
-
366
-
367
- <li class="r1 ">
368
- <a href="Stacked/Usertimeline.html#creation_date-instance_method" title="Stacked::Usertimeline#creation_date (method)">#creation_date</a>
369
-
370
- <small>Stacked::Usertimeline</small>
371
-
372
- </li>
373
-
374
-
375
- <li class="r2 ">
376
- <a href="Stacked/Question.html#creation_date-instance_method" title="Stacked::Question#creation_date (method)">#creation_date</a>
377
-
378
- <small>Stacked::Question</small>
379
-
380
- </li>
381
-
382
-
383
- <li class="r1 ">
384
- <a href="Stacked/Comment.html#creation_date-instance_method" title="Stacked::Comment#creation_date (method)">#creation_date</a>
385
-
386
- <small>Stacked::Comment</small>
387
-
388
- </li>
389
-
390
-
391
- <li class="r2 ">
392
- <a href="Stacked/Badge.html#description-instance_method" title="Stacked::Badge#description (method)">#description</a>
393
-
394
- <small>Stacked::Badge</small>
395
-
396
- </li>
397
-
398
-
399
- <li class="r1 ">
400
- <a href="Stacked/Usertimeline.html#description-instance_method" title="Stacked::Usertimeline#description (method)">#description</a>
401
-
402
- <small>Stacked::Usertimeline</small>
403
-
404
- </li>
405
-
406
-
407
- <li class="r2 ">
408
- <a href="Stacked/Usertimeline.html#detail-instance_method" title="Stacked::Usertimeline#detail (method)">#detail</a>
409
-
410
- <small>Stacked::Usertimeline</small>
411
-
412
- </li>
413
-
414
-
415
- <li class="r1 ">
416
- <a href="Stacked/User.html#directed_at-instance_method" title="Stacked::User#directed_at (method)">#directed_at</a>
417
-
418
- <small>Stacked::User</small>
419
-
420
- </li>
421
-
422
-
423
- <li class="r2 ">
424
- <a href="Stacked/User.html#directed_at_by_date-instance_method" title="Stacked::User#directed_at_by_date (method)">#directed_at_by_date</a>
425
-
426
- <small>Stacked::User</small>
427
-
428
- </li>
429
-
430
-
431
- <li class="r1 ">
432
- <a href="Stacked/User.html#directed_at_by_score-instance_method" title="Stacked::User#directed_at_by_score (method)">#directed_at_by_score</a>
433
-
434
- <small>Stacked::User</small>
435
-
436
- </li>
437
-
438
-
439
- <li class="r2 ">
440
- <a href="Stacked/User.html#display_name-instance_method" title="Stacked::User#display_name (method)">#display_name</a>
441
-
442
- <small>Stacked::User</small>
443
-
444
- </li>
445
-
446
-
447
- <li class="r1 ">
448
- <a href="Stacked/Question.html#down_vote_count-instance_method" title="Stacked::Question#down_vote_count (method)">#down_vote_count</a>
449
-
450
- <small>Stacked::Question</small>
451
-
452
- </li>
453
-
454
-
455
- <li class="r2 ">
456
- <a href="Stacked/Answer.html#down_vote_count-instance_method" title="Stacked::Answer#down_vote_count (method)">#down_vote_count</a>
457
-
458
- <small>Stacked::Answer</small>
459
-
460
- </li>
461
-
462
-
463
- <li class="r1 ">
464
- <a href="Stacked/User.html#down_vote_count-instance_method" title="Stacked::User#down_vote_count (method)">#down_vote_count</a>
465
-
466
- <small>Stacked::User</small>
467
-
468
- </li>
469
-
470
-
471
- <li class="r2 ">
472
- <a href="Stacked/Comment.html#edit_count-instance_method" title="Stacked::Comment#edit_count (method)">#edit_count</a>
473
-
474
- <small>Stacked::Comment</small>
475
-
476
- </li>
477
-
478
-
479
- <li class="r1 ">
480
- <a href="Stacked/User.html#email_hash-instance_method" title="Stacked::User#email_hash (method)">#email_hash</a>
481
-
482
- <small>Stacked::User</small>
483
-
484
- </li>
485
-
486
-
487
- <li class="r2 ">
488
- <a href="Stacked/Question.html#favorite_count-instance_method" title="Stacked::Question#favorite_count (method)">#favorite_count</a>
489
-
490
- <small>Stacked::Question</small>
491
-
492
- </li>
493
-
494
-
495
- <li class="r1 ">
496
- <a href="Stacked/User.html#favorites-instance_method" title="Stacked::User#favorites (method)">#favorites</a>
497
-
498
- <small>Stacked::User</small>
499
-
500
- </li>
501
-
502
-
503
- <li class="r2 ">
504
- <a href="Stacked/User.html#filter-class_method" title="Stacked::User.filter (method)">filter</a>
505
-
506
- <small>Stacked::User</small>
507
-
508
- </li>
509
-
510
-
511
- <li class="r1 ">
512
- <a href="Stacked/Base.html#find-class_method" title="Stacked::Base.find (method)">find</a>
513
-
514
- <small>Stacked::Base</small>
515
-
516
- </li>
517
-
518
-
519
- <li class="r2 ">
520
- <a href="Stacked/Base.html#initialize-instance_method" title="Stacked::Base#initialize (method)">#initialize</a>
521
-
522
- <small>Stacked::Base</small>
523
-
524
- </li>
525
-
526
-
527
- <li class="r1 ">
528
- <a href="Stacked/User.html#last_access_date-instance_method" title="Stacked::User#last_access_date (method)">#last_access_date</a>
529
-
530
- <small>Stacked::User</small>
531
-
532
- </li>
533
-
534
-
535
- <li class="r2 ">
536
- <a href="Stacked/Question.html#last_activity_date-instance_method" title="Stacked::Question#last_activity_date (method)">#last_activity_date</a>
537
-
538
- <small>Stacked::Question</small>
539
-
540
- </li>
541
-
542
-
543
- <li class="r1 ">
544
- <a href="Stacked/Question.html#last_edit_date-instance_method" title="Stacked::Question#last_edit_date (method)">#last_edit_date</a>
545
-
546
- <small>Stacked::Question</small>
547
-
548
- </li>
549
-
550
-
551
- <li class="r2 ">
552
- <a href="Stacked/Answer.html#last_edit_date-instance_method" title="Stacked::Answer#last_edit_date (method)">#last_edit_date</a>
553
-
554
- <small>Stacked::Answer</small>
555
-
556
- </li>
557
-
558
-
559
- <li class="r1 ">
560
- <a href="Stacked/User.html#location-instance_method" title="Stacked::User#location (method)">#location</a>
561
-
562
- <small>Stacked::User</small>
563
-
564
- </li>
565
-
566
-
567
- <li class="r2 ">
568
- <a href="Stacked/User.html#mentioned-instance_method" title="Stacked::User#mentioned (method)">#mentioned</a>
569
-
570
- <small>Stacked::User</small>
571
-
572
- </li>
573
-
574
-
575
- <li class="r1 ">
576
- <a href="Stacked/NotImplemented.html#message-instance_method" title="Stacked::NotImplemented#message (method)">#message</a>
577
-
578
- <small>Stacked::NotImplemented</small>
579
-
580
- </li>
581
-
582
-
583
- <li class="r2 ">
584
- <a href="Stacked/Tag.html#name-instance_method" title="Stacked::Tag#name (method)">#name</a>
585
-
586
- <small>Stacked::Tag</small>
587
-
588
- </li>
589
-
590
-
591
- <li class="r1 ">
592
- <a href="Stacked/Badge.html#name-instance_method" title="Stacked::Badge#name (method)">#name</a>
593
-
594
- <small>Stacked::Badge</small>
595
-
596
- </li>
597
-
598
-
599
- <li class="r2 ">
600
- <a href="Stacked/Reputation.html#negative_rep-instance_method" title="Stacked::Reputation#negative_rep (method)">#negative_rep</a>
601
-
602
- <small>Stacked::Reputation</small>
603
-
604
- </li>
605
-
606
-
607
- <li class="r1 ">
608
- <a href="Stacked/User.html#newest_answers-instance_method" title="Stacked::User#newest_answers (method)">#newest_answers</a>
609
-
610
- <small>Stacked::User</small>
611
-
612
- </li>
613
-
614
-
615
- <li class="r2 ">
616
- <a href="Stacked/User.html#newest_favorites-instance_method" title="Stacked::User#newest_favorites (method)">#newest_favorites</a>
617
-
618
- <small>Stacked::User</small>
619
-
620
- </li>
621
-
622
-
623
- <li class="r1 ">
624
- <a href="Stacked/User.html#newest_questions-instance_method" title="Stacked::User#newest_questions (method)">#newest_questions</a>
625
-
626
- <small>Stacked::User</small>
627
-
628
- </li>
629
-
630
-
631
- <li class="r2 ">
632
- <a href="Stacked/Reputation.html#on_date-instance_method" title="Stacked::Reputation#on_date (method)">#on_date</a>
633
-
634
- <small>Stacked::Reputation</small>
635
-
636
- </li>
637
-
638
-
639
- <li class="r1 ">
640
- <a href="Stacked/Answer.html#owner-instance_method" title="Stacked::Answer#owner (method)">#owner</a>
641
-
642
- <small>Stacked::Answer</small>
643
-
644
- </li>
645
-
646
-
647
- <li class="r2 ">
648
- <a href="Stacked/Question.html#owner-instance_method" title="Stacked::Question#owner (method)">#owner</a>
649
-
650
- <small>Stacked::Question</small>
651
-
652
- </li>
653
-
654
-
655
- <li class="r1 ">
656
- <a href="Stacked/Comment.html#owner-instance_method" title="Stacked::Comment#owner (method)">#owner</a>
657
-
658
- <small>Stacked::Comment</small>
659
-
660
- </li>
661
-
662
-
663
- <li class="r2 ">
664
- <a href="Stacked/Answer.html#owner_display_name-instance_method" title="Stacked::Answer#owner_display_name (method)">#owner_display_name</a>
665
-
666
- <small>Stacked::Answer</small>
667
-
668
- </li>
669
-
670
-
671
- <li class="r1 ">
672
- <a href="Stacked/Comment.html#owner_display_name-instance_method" title="Stacked::Comment#owner_display_name (method)">#owner_display_name</a>
673
-
674
- <small>Stacked::Comment</small>
675
-
676
- </li>
677
-
678
-
679
- <li class="r2 ">
680
- <a href="Stacked/Question.html#owner_display_name-instance_method" title="Stacked::Question#owner_display_name (method)">#owner_display_name</a>
681
-
682
- <small>Stacked::Question</small>
683
-
684
- </li>
685
-
686
-
687
- <li class="r1 ">
688
- <a href="Stacked/Answer.html#owner_user_id-instance_method" title="Stacked::Answer#owner_user_id (method)">#owner_user_id</a>
689
-
690
- <small>Stacked::Answer</small>
691
-
692
- </li>
693
-
694
-
695
- <li class="r2 ">
696
- <a href="Stacked/Comment.html#owner_user_id-instance_method" title="Stacked::Comment#owner_user_id (method)">#owner_user_id</a>
697
-
698
- <small>Stacked::Comment</small>
699
-
700
- </li>
701
-
702
-
703
- <li class="r1 ">
704
- <a href="Stacked/Question.html#owner_user_id-instance_method" title="Stacked::Question#owner_user_id (method)">#owner_user_id</a>
705
-
706
- <small>Stacked::Question</small>
707
-
708
- </li>
709
-
710
-
711
- <li class="r2 ">
712
- <a href="Stacked/Base.html#parse_answers-instance_method" title="Stacked::Base#parse_answers (method)">#parse_answers</a>
713
-
714
- <small>Stacked::Base</small>
715
-
716
- </li>
717
-
718
-
719
- <li class="r1 ">
720
- <a href="Stacked/Base.html#parse_badges-instance_method" title="Stacked::Base#parse_badges (method)">#parse_badges</a>
721
-
722
- <small>Stacked::Base</small>
723
-
724
- </li>
725
-
726
-
727
- <li class="r2 ">
728
- <a href="Stacked/Base.html#parse_comments-instance_method" title="Stacked::Base#parse_comments (method)">#parse_comments</a>
729
-
730
- <small>Stacked::Base</small>
731
-
732
- </li>
733
-
734
-
735
- <li class="r1 ">
736
- <a href="Stacked/Base.html#parse_post_timeline-instance_method" title="Stacked::Base#parse_post_timeline (method)">#parse_post_timeline</a>
737
-
738
- <small>Stacked::Base</small>
739
-
740
- </li>
741
-
742
-
743
- <li class="r2 ">
744
- <a href="Stacked/Base.html#parse_questions-instance_method" title="Stacked::Base#parse_questions (method)">#parse_questions</a>
745
-
746
- <small>Stacked::Base</small>
747
-
748
- </li>
749
-
750
-
751
- <li class="r1 ">
752
- <a href="Stacked/Base.html#parse_reputations-instance_method" title="Stacked::Base#parse_reputations (method)">#parse_reputations</a>
753
-
754
- <small>Stacked::Base</small>
755
-
756
- </li>
757
-
758
-
759
- <li class="r2 ">
760
- <a href="Stacked/Base.html#parse_tags-instance_method" title="Stacked::Base#parse_tags (method)">#parse_tags</a>
761
-
762
- <small>Stacked::Base</small>
763
-
764
- </li>
765
-
766
-
767
- <li class="r1 ">
768
- <a href="Stacked/Base.html#parse_type-instance_method" title="Stacked::Base#parse_type (method)">#parse_type</a>
769
-
770
- <small>Stacked::Base</small>
771
-
772
- </li>
773
-
774
-
775
- <li class="r2 ">
776
- <a href="Stacked/Base.html#parse_user_timeline-instance_method" title="Stacked::Base#parse_user_timeline (method)">#parse_user_timeline</a>
777
-
778
- <small>Stacked::Base</small>
779
-
780
- </li>
781
-
782
-
783
- <li class="r1 ">
784
- <a href="Stacked/User.html#popular_favorites-instance_method" title="Stacked::User#popular_favorites (method)">#popular_favorites</a>
785
-
786
- <small>Stacked::User</small>
787
-
788
- </li>
789
-
790
-
791
- <li class="r2 ">
792
- <a href="Stacked/Reputation.html#positive_rep-instance_method" title="Stacked::Reputation#positive_rep (method)">#positive_rep</a>
793
-
794
- <small>Stacked::Reputation</small>
795
-
796
- </li>
797
-
798
-
799
- <li class="r1 ">
800
- <a href="Stacked/Base.html#post-instance_method" title="Stacked::Base#post (method)">#post</a>
801
-
802
- <small>Stacked::Base</small>
803
-
804
- </li>
805
-
806
-
807
- <li class="r2 ">
808
- <a href="Stacked/Comment.html#post_id-instance_method" title="Stacked::Comment#post_id (method)">#post_id</a>
809
-
810
- <small>Stacked::Comment</small>
811
-
812
- </li>
813
-
814
-
815
- <li class="r1 ">
816
- <a href="Stacked/Usertimeline.html#post_id-instance_method" title="Stacked::Usertimeline#post_id (method)">#post_id</a>
817
-
818
- <small>Stacked::Usertimeline</small>
819
-
820
- </li>
821
-
822
-
823
- <li class="r2 ">
824
- <a href="Stacked/Reputation.html#post_id-instance_method" title="Stacked::Reputation#post_id (method)">#post_id</a>
825
-
826
- <small>Stacked::Reputation</small>
827
-
828
- </li>
829
-
830
-
831
- <li class="r1 ">
832
- <a href="Stacked/Posttimeline.html#post_id-instance_method" title="Stacked::Posttimeline#post_id (method)">#post_id</a>
833
-
834
- <small>Stacked::Posttimeline</small>
835
-
836
- </li>
837
-
838
-
839
- <li class="r2 ">
840
- <a href="Stacked/Comment.html#post_type-instance_method" title="Stacked::Comment#post_type (method)">#post_type</a>
841
-
842
- <small>Stacked::Comment</small>
843
-
844
- </li>
845
-
846
-
847
- <li class="r1 ">
848
- <a href="Stacked/Reputation.html#post_type-instance_method" title="Stacked::Reputation#post_type (method)">#post_type</a>
849
-
850
- <small>Stacked::Reputation</small>
851
-
852
- </li>
853
-
854
-
855
- <li class="r2 ">
856
- <a href="Stacked/Answer.html#question-instance_method" title="Stacked::Answer#question (method)">#question</a>
857
-
858
- <small>Stacked::Answer</small>
859
-
860
- </li>
861
-
862
-
863
- <li class="r1 ">
864
- <a href="Stacked/User.html#question_count-instance_method" title="Stacked::User#question_count (method)">#question_count</a>
865
-
866
- <small>Stacked::User</small>
867
-
868
- </li>
869
-
870
-
871
- <li class="r2 ">
872
- <a href="Stacked/Answer.html#question_id-instance_method" title="Stacked::Answer#question_id (method)">#question_id</a>
873
-
874
- <small>Stacked::Answer</small>
875
-
876
- </li>
877
-
878
-
879
- <li class="r1 ">
880
- <a href="Stacked/Question.html#question_id-instance_method" title="Stacked::Question#question_id (method)">#question_id</a>
881
-
882
- <small>Stacked::Question</small>
883
-
884
- </li>
885
-
886
-
887
- <li class="r2 ">
888
- <a href="Stacked/User.html#questions-instance_method" title="Stacked::User#questions (method)">#questions</a>
889
-
890
- <small>Stacked::User</small>
891
-
892
- </li>
893
-
894
-
895
- <li class="r1 ">
896
- <a href="Stacked/User.html#questions_by_views-instance_method" title="Stacked::User#questions_by_views (method)">#questions_by_views</a>
897
-
898
- <small>Stacked::User</small>
899
-
900
- </li>
901
-
902
-
903
- <li class="r2 ">
904
- <a href="Stacked/User.html#questions_by_votes-instance_method" title="Stacked::User#questions_by_votes (method)">#questions_by_votes</a>
905
-
906
- <small>Stacked::User</small>
907
-
908
- </li>
909
-
910
-
911
- <li class="r1 ">
912
- <a href="Stacked/User.html#recent_comments-instance_method" title="Stacked::User#recent_comments (method)">#recent_comments</a>
913
-
914
- <small>Stacked::User</small>
915
-
916
- </li>
917
-
918
-
919
- <li class="r2 ">
920
- <a href="Stacked/User.html#recent_favorites-instance_method" title="Stacked::User#recent_favorites (method)">#recent_favorites</a>
921
-
922
- <small>Stacked::User</small>
923
-
924
- </li>
925
-
926
-
927
- <li class="r1 ">
928
- <a href="Stacked/User.html#recent_questions-instance_method" title="Stacked::User#recent_questions (method)">#recent_questions</a>
929
-
930
- <small>Stacked::User</small>
931
-
932
- </li>
933
-
934
-
935
- <li class="r2 ">
936
- <a href="Stacked/Base.html#records-class_method" title="Stacked::Base.records (method)">records</a>
937
-
938
- <small>Stacked::Base</small>
939
-
940
- </li>
941
-
942
-
943
- <li class="r1 ">
944
- <a href="Stacked/Comment.html#reply_to-instance_method" title="Stacked::Comment#reply_to (method)">#reply_to</a>
945
-
946
- <small>Stacked::Comment</small>
947
-
948
- </li>
949
-
950
-
951
- <li class="r2 ">
952
- <a href="Stacked/Comment.html#reply_to_user_id-instance_method" title="Stacked::Comment#reply_to_user_id (method)">#reply_to_user_id</a>
953
-
954
- <small>Stacked::Comment</small>
955
-
956
- </li>
957
-
958
-
959
- <li class="r1 ">
960
- <a href="Stacked/User.html#reputation-instance_method" title="Stacked::User#reputation (method)">#reputation</a>
961
-
962
- <small>Stacked::User</small>
963
-
964
- </li>
965
-
966
-
967
- <li class="r2 ">
968
- <a href="Stacked/User.html#reputations-instance_method" title="Stacked::User#reputations (method)">#reputations</a>
969
-
970
- <small>Stacked::User</small>
971
-
972
- </li>
973
-
974
-
975
- <li class="r1 ">
976
- <a href="Stacked/Base.html#request-class_method" title="Stacked::Base.request (method)">request</a>
977
-
978
- <small>Stacked::Base</small>
979
-
980
- </li>
981
-
982
-
983
- <li class="r2 ">
984
- <a href="Stacked/Answer.html#score-instance_method" title="Stacked::Answer#score (method)">#score</a>
985
-
986
- <small>Stacked::Answer</small>
987
-
988
- </li>
989
-
990
-
991
- <li class="r1 ">
992
- <a href="Stacked/Question.html#score-instance_method" title="Stacked::Question#score (method)">#score</a>
993
-
994
- <small>Stacked::Question</small>
995
-
996
- </li>
997
-
998
-
999
- <li class="r2 ">
1000
- <a href="Stacked/Reputation.html#score-instance_method" title="Stacked::Reputation#score (method)">#score</a>
1001
-
1002
- <small>Stacked::Reputation</small>
1003
-
1004
- </li>
1005
-
1006
-
1007
- <li class="r1 ">
1008
- <a href="Stacked/Comment.html#score-instance_method" title="Stacked::Comment#score (method)">#score</a>
1009
-
1010
- <small>Stacked::Comment</small>
1011
-
1012
- </li>
1013
-
1014
-
1015
- <li class="r2 ">
1016
- <a href="Stacked/Base.html#singular-class_method" title="Stacked::Base.singular (method)">singular</a>
1017
-
1018
- <small>Stacked::Base</small>
1019
-
1020
- </li>
1021
-
1022
-
1023
- <li class="r1 ">
1024
- <a href="Stacked/Base.html#stats-class_method" title="Stacked::Base.stats (method)">stats</a>
1025
-
1026
- <small>Stacked::Base</small>
1027
-
1028
- </li>
1029
-
1030
-
1031
- <li class="r2 ">
1032
- <a href="Stacked/Question.html#tagged-class_method" title="Stacked::Question.tagged (method)">tagged</a>
1033
-
1034
- <small>Stacked::Question</small>
1035
-
1036
- </li>
1037
-
1038
-
1039
- <li class="r1 ">
1040
- <a href="Stacked/Question.html#tags-instance_method" title="Stacked::Question#tags (method)">#tags</a>
1041
-
1042
- <small>Stacked::Question</small>
1043
-
1044
- </li>
1045
-
1046
-
1047
- <li class="r2 ">
1048
- <a href="Stacked/User.html#tags-instance_method" title="Stacked::User#tags (method)">#tags</a>
1049
-
1050
- <small>Stacked::User</small>
1051
-
1052
- </li>
1053
-
1054
-
1055
- <li class="r1 ">
1056
- <a href="Stacked/User.html#timeline-instance_method" title="Stacked::User#timeline (method)">#timeline</a>
1057
-
1058
- <small>Stacked::User</small>
1059
-
1060
- </li>
1061
-
1062
-
1063
- <li class="r2 ">
1064
- <a href="Stacked/Question.html#timeline-instance_method" title="Stacked::Question#timeline (method)">#timeline</a>
1065
-
1066
- <small>Stacked::Question</small>
1067
-
1068
- </li>
1069
-
1070
-
1071
- <li class="r1 ">
1072
- <a href="Stacked/Posttimeline.html#timeline_type-instance_method" title="Stacked::Posttimeline#timeline_type (method)">#timeline_type</a>
1073
-
1074
- <small>Stacked::Posttimeline</small>
1075
-
1076
- </li>
1077
-
1078
-
1079
- <li class="r2 ">
1080
- <a href="Stacked/Usertimeline.html#timeline_type-instance_method" title="Stacked::Usertimeline#timeline_type (method)">#timeline_type</a>
1081
-
1082
- <small>Stacked::Usertimeline</small>
1083
-
1084
- </li>
1085
-
1086
-
1087
- <li class="r1 ">
1088
- <a href="Stacked/Answer.html#title-instance_method" title="Stacked::Answer#title (method)">#title</a>
1089
-
1090
- <small>Stacked::Answer</small>
1091
-
1092
- </li>
1093
-
1094
-
1095
- <li class="r2 ">
1096
- <a href="Stacked/Reputation.html#title-instance_method" title="Stacked::Reputation#title (method)">#title</a>
1097
-
1098
- <small>Stacked::Reputation</small>
1099
-
1100
- </li>
1101
-
1102
-
1103
- <li class="r1 ">
1104
- <a href="Stacked/Question.html#title-instance_method" title="Stacked::Question#title (method)">#title</a>
1105
-
1106
- <small>Stacked::Question</small>
1107
-
1108
- </li>
1109
-
1110
-
1111
- <li class="r2 ">
1112
- <a href="Stacked/Question.html#unanswered_by_votes-class_method" title="Stacked::Question.unanswered_by_votes (method)">unanswered_by_votes</a>
1113
-
1114
- <small>Stacked::Question</small>
1115
-
1116
- </li>
1117
-
1118
-
1119
- <li class="r1 ">
1120
- <a href="Stacked/Question.html#up_vote_count-instance_method" title="Stacked::Question#up_vote_count (method)">#up_vote_count</a>
1121
-
1122
- <small>Stacked::Question</small>
1123
-
1124
- </li>
1125
-
1126
-
1127
- <li class="r2 ">
1128
- <a href="Stacked/User.html#up_vote_count-instance_method" title="Stacked::User#up_vote_count (method)">#up_vote_count</a>
1129
-
1130
- <small>Stacked::User</small>
1131
-
1132
- </li>
1133
-
1134
-
1135
- <li class="r1 ">
1136
- <a href="Stacked/Answer.html#up_vote_count-instance_method" title="Stacked::Answer#up_vote_count (method)">#up_vote_count</a>
1137
-
1138
- <small>Stacked::Answer</small>
1139
-
1140
- </li>
1141
-
1142
-
1143
- <li class="r2 ">
1144
- <a href="Stacked/Posttimeline.html#user_id-instance_method" title="Stacked::Posttimeline#user_id (method)">#user_id</a>
1145
-
1146
- <small>Stacked::Posttimeline</small>
1147
-
1148
- </li>
1149
-
1150
-
1151
- <li class="r1 ">
1152
- <a href="Stacked/User.html#user_id-instance_method" title="Stacked::User#user_id (method)">#user_id</a>
1153
-
1154
- <small>Stacked::User</small>
1155
-
1156
- </li>
1157
-
1158
-
1159
- <li class="r2 ">
1160
- <a href="Stacked/User.html#user_type-instance_method" title="Stacked::User#user_type (method)">#user_type</a>
1161
-
1162
- <small>Stacked::User</small>
1163
-
1164
- </li>
1165
-
1166
-
1167
- <li class="r1 ">
1168
- <a href="Stacked/Answer.html#view_count-instance_method" title="Stacked::Answer#view_count (method)">#view_count</a>
1169
-
1170
- <small>Stacked::Answer</small>
1171
-
1172
- </li>
1173
-
1174
-
1175
- <li class="r2 ">
1176
- <a href="Stacked/User.html#view_count-instance_method" title="Stacked::User#view_count (method)">#view_count</a>
1177
-
1178
- <small>Stacked::User</small>
1179
-
1180
- </li>
1181
-
1182
-
1183
- <li class="r1 ">
1184
- <a href="Stacked/Question.html#view_count-instance_method" title="Stacked::Question#view_count (method)">#view_count</a>
1185
-
1186
- <small>Stacked::Question</small>
1187
-
1188
- </li>
1189
-
1190
-
1191
- <li class="r2 ">
1192
- <a href="Stacked/User.html#website_url-instance_method" title="Stacked::User#website_url (method)">#website_url</a>
1193
-
1194
- <small>Stacked::User</small>
1195
-
1196
- </li>
1197
-
1198
-
1199
- </ul>
1200
- </div>
1201
- </body>
1202
- </html>
1203
-