lolita-report 0.0.2

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 (75) hide show
  1. data/.document +5 -0
  2. data/Gemfile +18 -0
  3. data/LICENSE.txt +20 -0
  4. data/README.rdoc +19 -0
  5. data/Rakefile +45 -0
  6. data/VERSION +1 -0
  7. data/app/controllers/lolita/reports_controller.rb +18 -0
  8. data/app/views/components/lolita/configuration/report/_display.html.erb +1 -0
  9. data/app/views/lolita/reports/show.html.erb +9 -0
  10. data/author +1 -0
  11. data/doc/ActiveSupport.html +167 -0
  12. data/doc/ActiveSupport/TestCase.html +168 -0
  13. data/doc/Comment.html +184 -0
  14. data/doc/Gemfile.html +157 -0
  15. data/doc/LICENSE.html +111 -0
  16. data/doc/Lolita.html +184 -0
  17. data/doc/Lolita/Configuration.html +178 -0
  18. data/doc/Lolita/Configuration/Report.html +837 -0
  19. data/doc/Lolita/Configuration/Reports.html +413 -0
  20. data/doc/LolitaReport.html +194 -0
  21. data/doc/LolitaReport/Configuration.html +250 -0
  22. data/doc/Post.html +183 -0
  23. data/doc/Rakefile.html +124 -0
  24. data/doc/author.html +111 -0
  25. data/doc/created.rid +15 -0
  26. data/doc/images/brick.png +0 -0
  27. data/doc/images/brick_link.png +0 -0
  28. data/doc/images/bug.png +0 -0
  29. data/doc/images/bullet_black.png +0 -0
  30. data/doc/images/bullet_toggle_minus.png +0 -0
  31. data/doc/images/bullet_toggle_plus.png +0 -0
  32. data/doc/images/date.png +0 -0
  33. data/doc/images/find.png +0 -0
  34. data/doc/images/loadingAnimation.gif +0 -0
  35. data/doc/images/macFFBgHack.png +0 -0
  36. data/doc/images/package.png +0 -0
  37. data/doc/images/page_green.png +0 -0
  38. data/doc/images/page_white_text.png +0 -0
  39. data/doc/images/page_white_width.png +0 -0
  40. data/doc/images/plugin.png +0 -0
  41. data/doc/images/ruby.png +0 -0
  42. data/doc/images/tag_green.png +0 -0
  43. data/doc/images/wrench.png +0 -0
  44. data/doc/images/wrench_orange.png +0 -0
  45. data/doc/images/zoom.png +0 -0
  46. data/doc/index.html +126 -0
  47. data/doc/js/darkfish.js +116 -0
  48. data/doc/js/jquery.js +32 -0
  49. data/doc/js/quicksearch.js +114 -0
  50. data/doc/js/thickbox-compressed.js +10 -0
  51. data/doc/lib/lolita-report/configuration/base_rb.html +61 -0
  52. data/doc/lib/lolita-report/configuration/report_rb.html +57 -0
  53. data/doc/lib/lolita-report/configuration/reports_rb.html +55 -0
  54. data/doc/lib/lolita-report/version_rb.html +52 -0
  55. data/doc/lib/lolita-report_rb.html +58 -0
  56. data/doc/rdoc.css +706 -0
  57. data/doc/spec/configuration/report_spec_rb.html +56 -0
  58. data/doc/spec/configuration/reports_spec_rb.html +56 -0
  59. data/doc/spec/factories/factories_rb.html +52 -0
  60. data/doc/spec/orm/mongoid_rb.html +56 -0
  61. data/doc/spec/spec_helper_rb.html +58 -0
  62. data/lib/lolita-report.rb +33 -0
  63. data/lib/lolita-report/configuration/base.rb +22 -0
  64. data/lib/lolita-report/configuration/report.rb +147 -0
  65. data/lib/lolita-report/configuration/reports.rb +42 -0
  66. data/lib/lolita-report/module.rb +1 -0
  67. data/lib/lolita-report/rails.rb +6 -0
  68. data/lib/lolita-report/routes.rb +15 -0
  69. data/lolita-report.gemspec +150 -0
  70. data/spec/configuration/report_spec.rb +87 -0
  71. data/spec/configuration/reports_spec.rb +40 -0
  72. data/spec/factories/factories.rb +7 -0
  73. data/spec/orm/mongoid.rb +27 -0
  74. data/spec/spec_helper.rb +38 -0
  75. metadata +259 -0
@@ -0,0 +1,250 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
7
+
8
+ <title>Module: LolitaReport::Configuration</title>
9
+
10
+ <link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="../js/jquery.js" type="text/javascript"
13
+ charset="utf-8"></script>
14
+ <script src="../js/thickbox-compressed.js" type="text/javascript"
15
+ charset="utf-8"></script>
16
+ <script src="../js/quicksearch.js" type="text/javascript"
17
+ charset="utf-8"></script>
18
+ <script src="../js/darkfish.js" type="text/javascript"
19
+ charset="utf-8"></script>
20
+
21
+ </head>
22
+ <body class="module">
23
+
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
+ <h3 class="section-header">
28
+ <a href="../index.html">Home</a>
29
+ <a href="../index.html#classes">Classes</a>
30
+ <a href="../index.html#methods">Methods</a>
31
+ </h3>
32
+ </div>
33
+ </div>
34
+
35
+ <div id="file-metadata">
36
+ <div id="file-list-section" class="section">
37
+ <h3 class="section-header">In Files</h3>
38
+ <div class="section-body">
39
+ <ul>
40
+
41
+ <li><a href="../lib/lolita-report/configuration/base_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
42
+ class="thickbox" title="lib/lolita-report/configuration/base.rb">lib/lolita-report/configuration/base.rb</a></li>
43
+
44
+ </ul>
45
+ </div>
46
+ </div>
47
+
48
+
49
+ </div>
50
+
51
+ <div id="class-metadata">
52
+
53
+ <!-- Parent Class -->
54
+
55
+
56
+ <!-- Namespace Contents -->
57
+
58
+
59
+ <!-- Method Quickref -->
60
+
61
+ <div id="method-list-section" class="section">
62
+ <h3 class="section-header">Methods</h3>
63
+ <ul class="link-list">
64
+
65
+ <li><a href="#method-i-report">#report</a></li>
66
+
67
+ <li><a href="#method-i-reports">#reports</a></li>
68
+
69
+ </ul>
70
+ </div>
71
+
72
+
73
+ <!-- Included Modules -->
74
+
75
+ </div>
76
+
77
+ <div id="project-metadata">
78
+
79
+
80
+ <div id="fileindex-section" class="section project-section">
81
+ <h3 class="section-header">Files</h3>
82
+ <ul>
83
+
84
+ <li class="file"><a href="../Gemfile.html">Gemfile</a></li>
85
+
86
+ <li class="file"><a href="../LICENSE.html">LICENSE</a></li>
87
+
88
+ <li class="file"><a href="../Rakefile.html">Rakefile</a></li>
89
+
90
+ <li class="file"><a href="../author.html">author</a></li>
91
+
92
+ </ul>
93
+ </div>
94
+
95
+
96
+ <div id="classindex-section" class="section project-section">
97
+ <h3 class="section-header">Class Index
98
+ <span class="search-toggle"><img src="../images/find.png"
99
+ height="16" width="16" alt="[+]"
100
+ title="show/hide quicksearch" /></span></h3>
101
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
102
+ <fieldset>
103
+ <legend>Quicksearch</legend>
104
+ <input type="text" name="quicksearch" value=""
105
+ class="quicksearch-field" />
106
+ </fieldset>
107
+ </form>
108
+
109
+ <ul class="link-list">
110
+
111
+ <li><a href="../Lolita.html">Lolita</a></li>
112
+
113
+ <li><a href="../Lolita/Configuration.html">Lolita::Configuration</a></li>
114
+
115
+ <li><a href="../Lolita/Configuration/Report.html">Lolita::Configuration::Report</a></li>
116
+
117
+ <li><a href="../Lolita/Configuration/Reports.html">Lolita::Configuration::Reports</a></li>
118
+
119
+ <li><a href="../ActiveSupport.html">ActiveSupport</a></li>
120
+
121
+ <li><a href="../ActiveSupport/TestCase.html">ActiveSupport::TestCase</a></li>
122
+
123
+ <li><a href="../LolitaReport.html">LolitaReport</a></li>
124
+
125
+ <li><a href="../LolitaReport/Configuration.html">LolitaReport::Configuration</a></li>
126
+
127
+ <li><a href="../Comment.html">Comment</a></li>
128
+
129
+ <li><a href="../Post.html">Post</a></li>
130
+
131
+ </ul>
132
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
133
+ </div>
134
+
135
+
136
+ </div>
137
+ </div>
138
+
139
+ <div id="documentation">
140
+ <h1 class="module">LolitaReport::Configuration</h1>
141
+
142
+ <div id="description">
143
+
144
+ </div>
145
+
146
+ <!-- Constants -->
147
+
148
+
149
+ <!-- Attributes -->
150
+
151
+
152
+ <!-- Methods -->
153
+
154
+ <div id="public-instance-method-details" class="method-section section">
155
+ <h3 class="section-header">Public Instance Methods</h3>
156
+
157
+
158
+ <div id="report-method" class="method-detail ">
159
+ <a name="method-i-report"></a>
160
+
161
+ <div class="method-heading">
162
+
163
+ <span class="method-name">report</span><span
164
+ class="method-args">(*args, &block)</span>
165
+ <span class="method-click-advice">click to toggle source</span>
166
+
167
+ </div>
168
+
169
+ <div class="method-description">
170
+
171
+ <p>
172
+ Container for report
173
+ </p>
174
+
175
+
176
+
177
+ <div class="method-source-code"
178
+ id="report-source">
179
+ <pre>
180
+ <span class="ruby-comment cmt"># File lib/lolita-report/configuration/base.rb, line 14</span>
181
+ 14: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">report</span> *<span class="ruby-identifier">args</span>, &amp;<span class="ruby-identifier">block</span>
182
+ 15: <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">reports</span><span class="ruby-operator">&lt;&lt;</span><span class="ruby-constant">Lolita</span><span class="ruby-operator">::</span><span class="ruby-constant">Configuration</span><span class="ruby-operator">::</span><span class="ruby-constant">Report</span>.<span class="ruby-identifier">new</span>(<span class="ruby-ivar">@dbi</span>,*<span class="ruby-identifier">args</span>,&amp;<span class="ruby-identifier">block</span>)
183
+ 16: <span class="ruby-keyword kw">end</span></pre>
184
+ </div>
185
+
186
+ </div>
187
+
188
+
189
+
190
+
191
+ </div>
192
+
193
+
194
+ <div id="reports-method" class="method-detail ">
195
+ <a name="method-i-reports"></a>
196
+
197
+ <div class="method-heading">
198
+
199
+ <span class="method-name">reports</span><span
200
+ class="method-args">(&block)</span>
201
+ <span class="method-click-advice">click to toggle source</span>
202
+
203
+ </div>
204
+
205
+ <div class="method-description">
206
+
207
+ <p>
208
+ Container for reports
209
+ </p>
210
+
211
+
212
+
213
+ <div class="method-source-code"
214
+ id="reports-source">
215
+ <pre>
216
+ <span class="ruby-comment cmt"># File lib/lolita-report/configuration/base.rb, line 9</span>
217
+ 9: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">reports</span> &amp;<span class="ruby-identifier">block</span>
218
+ 10: <span class="ruby-constant">Lolita</span><span class="ruby-operator">::</span><span class="ruby-constant">LazyLoader</span>.<span class="ruby-identifier">lazy_load</span>(<span class="ruby-keyword kw">self</span>,<span class="ruby-value">:@reports</span>,<span class="ruby-constant">Lolita</span><span class="ruby-operator">::</span><span class="ruby-constant">Configuration</span><span class="ruby-operator">::</span><span class="ruby-constant">Reports</span>,<span class="ruby-ivar">@dbi</span>,&amp;<span class="ruby-identifier">block</span>)
219
+ 11: <span class="ruby-keyword kw">end</span></pre>
220
+ </div>
221
+
222
+ </div>
223
+
224
+
225
+
226
+
227
+ </div>
228
+
229
+
230
+ </div>
231
+
232
+
233
+ </div>
234
+
235
+
236
+ <div id="rdoc-debugging-section-dump" class="debugging-section">
237
+
238
+ <p>Disabled; run with --debug to generate this.</p>
239
+
240
+ </div>
241
+
242
+ <div id="validator-badges">
243
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
244
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
245
+ Rdoc Generator</a> 1.1.6</small>.</p>
246
+ </div>
247
+
248
+ </body>
249
+ </html>
250
+
data/doc/Post.html ADDED
@@ -0,0 +1,183 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
7
+
8
+ <title>Class: Post</title>
9
+
10
+ <link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="./js/jquery.js" type="text/javascript"
13
+ charset="utf-8"></script>
14
+ <script src="./js/thickbox-compressed.js" type="text/javascript"
15
+ charset="utf-8"></script>
16
+ <script src="./js/quicksearch.js" type="text/javascript"
17
+ charset="utf-8"></script>
18
+ <script src="./js/darkfish.js" type="text/javascript"
19
+ charset="utf-8"></script>
20
+
21
+ </head>
22
+ <body class="class">
23
+
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
+ <h3 class="section-header">
28
+ <a href="./index.html">Home</a>
29
+ <a href="./index.html#classes">Classes</a>
30
+ <a href="./index.html#methods">Methods</a>
31
+ </h3>
32
+ </div>
33
+ </div>
34
+
35
+ <div id="file-metadata">
36
+ <div id="file-list-section" class="section">
37
+ <h3 class="section-header">In Files</h3>
38
+ <div class="section-body">
39
+ <ul>
40
+
41
+ <li><a href="./spec/orm/mongoid_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
42
+ class="thickbox" title="spec/orm/mongoid.rb">spec/orm/mongoid.rb</a></li>
43
+
44
+ </ul>
45
+ </div>
46
+ </div>
47
+
48
+
49
+ </div>
50
+
51
+ <div id="class-metadata">
52
+
53
+ <!-- Parent Class -->
54
+
55
+ <div id="parent-class-section" class="section">
56
+ <h3 class="section-header">Parent</h3>
57
+
58
+ <p class="link">Object</p>
59
+
60
+ </div>
61
+
62
+
63
+ <!-- Namespace Contents -->
64
+
65
+
66
+ <!-- Method Quickref -->
67
+
68
+
69
+ <!-- Included Modules -->
70
+
71
+ <div id="includes-section" class="section">
72
+ <h3 class="section-header">Included Modules</h3>
73
+ <ul class="link-list">
74
+
75
+
76
+ <li><span class="include">Mongoid::Document</span></li>
77
+
78
+
79
+ </ul>
80
+ </div>
81
+
82
+ </div>
83
+
84
+ <div id="project-metadata">
85
+
86
+
87
+ <div id="fileindex-section" class="section project-section">
88
+ <h3 class="section-header">Files</h3>
89
+ <ul>
90
+
91
+ <li class="file"><a href="./Gemfile.html">Gemfile</a></li>
92
+
93
+ <li class="file"><a href="./LICENSE.html">LICENSE</a></li>
94
+
95
+ <li class="file"><a href="./Rakefile.html">Rakefile</a></li>
96
+
97
+ <li class="file"><a href="./author.html">author</a></li>
98
+
99
+ </ul>
100
+ </div>
101
+
102
+
103
+ <div id="classindex-section" class="section project-section">
104
+ <h3 class="section-header">Class Index
105
+ <span class="search-toggle"><img src="./images/find.png"
106
+ height="16" width="16" alt="[+]"
107
+ title="show/hide quicksearch" /></span></h3>
108
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
109
+ <fieldset>
110
+ <legend>Quicksearch</legend>
111
+ <input type="text" name="quicksearch" value=""
112
+ class="quicksearch-field" />
113
+ </fieldset>
114
+ </form>
115
+
116
+ <ul class="link-list">
117
+
118
+ <li><a href="./Lolita.html">Lolita</a></li>
119
+
120
+ <li><a href="./Lolita/Configuration.html">Lolita::Configuration</a></li>
121
+
122
+ <li><a href="./Lolita/Configuration/Report.html">Lolita::Configuration::Report</a></li>
123
+
124
+ <li><a href="./Lolita/Configuration/Reports.html">Lolita::Configuration::Reports</a></li>
125
+
126
+ <li><a href="./ActiveSupport.html">ActiveSupport</a></li>
127
+
128
+ <li><a href="./ActiveSupport/TestCase.html">ActiveSupport::TestCase</a></li>
129
+
130
+ <li><a href="./LolitaReport.html">LolitaReport</a></li>
131
+
132
+ <li><a href="./LolitaReport/Configuration.html">LolitaReport::Configuration</a></li>
133
+
134
+ <li><a href="./Comment.html">Comment</a></li>
135
+
136
+ <li><a href="./Post.html">Post</a></li>
137
+
138
+ </ul>
139
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
140
+ </div>
141
+
142
+
143
+ </div>
144
+ </div>
145
+
146
+ <div id="documentation">
147
+ <h1 class="class">Post</h1>
148
+
149
+ <div id="description">
150
+ <p>
151
+ Class <a href="Post.html">Post</a> is necessary for testin Lolita-report
152
+ gem. Class <a href="Post.html">Post</a> is using Mongo DB
153
+ </p>
154
+
155
+ </div>
156
+
157
+ <!-- Constants -->
158
+
159
+
160
+ <!-- Attributes -->
161
+
162
+
163
+ <!-- Methods -->
164
+
165
+
166
+ </div>
167
+
168
+
169
+ <div id="rdoc-debugging-section-dump" class="debugging-section">
170
+
171
+ <p>Disabled; run with --debug to generate this.</p>
172
+
173
+ </div>
174
+
175
+ <div id="validator-badges">
176
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
177
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
178
+ Rdoc Generator</a> 1.1.6</small>.</p>
179
+ </div>
180
+
181
+ </body>
182
+ </html>
183
+
data/doc/Rakefile.html ADDED
@@ -0,0 +1,124 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
+ <head>
7
+ <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
8
+
9
+ <title>File: Rakefile [RDoc Documentation]</title>
10
+
11
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet" />
12
+
13
+ <script src="./js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="./js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="./js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="./js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
+ </head>
22
+
23
+ <body class="file">
24
+ <div id="metadata">
25
+ <div id="home-metadata">
26
+ <div id="home-section" class="section">
27
+ <h3 class="section-header">
28
+ <a href="./index.html">Home</a>
29
+ <a href="./index.html#classes">Classes</a>
30
+ <a href="./index.html#methods">Methods</a>
31
+ </h3>
32
+ </div>
33
+ </div>
34
+
35
+ <div id="project-metadata">
36
+
37
+
38
+ <div id="fileindex-section" class="section project-section">
39
+ <h3 class="section-header">Files</h3>
40
+ <ul>
41
+
42
+ <li class="file"><a href="./Gemfile.html">Gemfile</a></li>
43
+
44
+ <li class="file"><a href="./LICENSE.html">LICENSE</a></li>
45
+
46
+ <li class="file"><a href="./Rakefile.html">Rakefile</a></li>
47
+
48
+ <li class="file"><a href="./author.html">author</a></li>
49
+
50
+ </ul>
51
+ </div>
52
+
53
+
54
+ <div id="classindex-section" class="section project-section">
55
+ <h3 class="section-header">Class Index
56
+ <span class="search-toggle"><img src="./images/find.png"
57
+ height="16" width="16" alt="[+]"
58
+ title="show/hide quicksearch" /></span></h3>
59
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
60
+ <fieldset>
61
+ <legend>Quicksearch</legend>
62
+ <input type="text" name="quicksearch" value=""
63
+ class="quicksearch-field" />
64
+ </fieldset>
65
+ </form>
66
+
67
+ <ul class="link-list">
68
+
69
+ <li><a href="./Lolita.html">Lolita</a></li>
70
+
71
+ <li><a href="./Lolita/Configuration.html">Lolita::Configuration</a></li>
72
+
73
+ <li><a href="./Lolita/Configuration/Report.html">Lolita::Configuration::Report</a></li>
74
+
75
+ <li><a href="./Lolita/Configuration/Reports.html">Lolita::Configuration::Reports</a></li>
76
+
77
+ <li><a href="./ActiveSupport.html">ActiveSupport</a></li>
78
+
79
+ <li><a href="./ActiveSupport/TestCase.html">ActiveSupport::TestCase</a></li>
80
+
81
+ <li><a href="./LolitaReport.html">LolitaReport</a></li>
82
+
83
+ <li><a href="./LolitaReport/Configuration.html">LolitaReport::Configuration</a></li>
84
+
85
+ <li><a href="./Comment.html">Comment</a></li>
86
+
87
+ <li><a href="./Post.html">Post</a></li>
88
+
89
+ </ul>
90
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
91
+ </div>
92
+
93
+
94
+ </div>
95
+ </div>
96
+
97
+ <div id="documentation">
98
+ <p>
99
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
100
  # for
101
+ example lib/tasks/capistrano.rake, and they will automatically be available
102
+ to Rake.
103
+ </p>
104
+ <p>
105
+ require(File.join(File.dirname(<em>FILE</em>), &#8216;config&#8217;,
106
+ &#8216;boot&#8217;))
107
+ </p>
108
+ <p>
109
+ require &#8216;rake&#8217;
1
110
  require &#8216;rake/testtask&#8217;
2
111
  require
112
+ &#8216;rake/rdoctask&#8217;
113
+ </p>
114
+ <p>
115
+ require &#8216;tasks/rails&#8217;
3
116
  require &#8216;tasks/facebooker&#8217;
117
+ </p>
118
+
119
+ </div>
120
+
121
+ <div id="validator-badges">
122
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
123
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
124
+ Rdoc Generator</a> 1.1.6</small>.</p>
125
+ </div>
126
+ </body>
127
+ </html>
128
+