easy_html_creator 1.0.0 → 1.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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +11 -0
- data/Gemfile +3 -0
- data/LICENSE +1 -1
- data/README.md +20 -16
- data/bin/easy_html_creator +1 -0
- data/bin/ehc +5 -0
- data/dev_root/{test1 → demo-website}/coffee/test.coffee +0 -0
- data/dev_root/{test1 → demo-website}/helper/test_helper.rb +0 -0
- data/dev_root/{test1 → demo-website}/index.haml +4 -0
- data/dev_root/{test1 → demo-website}/layout.haml +0 -0
- data/dev_root/{test1 → demo-website}/partials/_assets.haml +0 -0
- data/dev_root/demo-website/partials/_footer.haml +1 -0
- data/dev_root/demo-website/partials/_header.haml +1 -0
- data/dev_root/{test1 → demo-website}/partials/_metadata.haml +1 -1
- data/dev_root/demo-website/public/images/easy-way.jpg +0 -0
- data/dev_root/{test1 → demo-website}/public/robots.txt +0 -0
- data/dev_root/{test1 → demo-website}/sass/main.sass +0 -0
- data/dev_root/documentation/dev_root.haml +41 -0
- data/dev_root/documentation/generate.haml +16 -0
- data/dev_root/documentation/index.haml +23 -0
- data/dev_root/documentation/layout.haml +11 -0
- data/dev_root/documentation/partials/_assets.haml +1 -0
- data/dev_root/documentation/partials/_header.haml +5 -0
- data/dev_root/documentation/partials/_metadata.haml +5 -0
- data/dev_root/documentation/public/doc/ActivesupportOverride.html +674 -0
- data/dev_root/documentation/public/doc/EhcCommandTasks.html +598 -0
- data/dev_root/documentation/public/doc/Generator.html +117 -0
- data/dev_root/documentation/public/doc/Generator/CoffeeGenerator.html +309 -0
- data/dev_root/documentation/public/doc/Generator/Context.html +437 -0
- data/dev_root/documentation/public/doc/Generator/Generator.html +552 -0
- data/dev_root/documentation/public/doc/Generator/HamlGenerator.html +406 -0
- data/dev_root/documentation/public/doc/Generator/SassGenerator.html +313 -0
- data/dev_root/documentation/public/doc/Generator/StructureGenerator.html +257 -0
- data/dev_root/documentation/public/doc/Server.html +165 -0
- data/dev_root/documentation/public/doc/Server/Dispatcher.html +377 -0
- data/dev_root/documentation/public/doc/Server/Request.html +730 -0
- data/dev_root/documentation/public/doc/Server/Response.html +642 -0
- data/dev_root/documentation/public/doc/Server/Server.html +356 -0
- data/dev_root/documentation/public/doc/_index.html +260 -0
- data/dev_root/documentation/public/doc/class_list.html +58 -0
- data/dev_root/documentation/public/doc/css/common.css +1 -0
- data/dev_root/documentation/public/doc/css/full_list.css +57 -0
- data/dev_root/documentation/public/doc/css/style.css +339 -0
- data/dev_root/documentation/public/doc/file.CHANGELOG.html +98 -0
- data/dev_root/documentation/public/doc/file.LICENSE.html +95 -0
- data/dev_root/documentation/public/doc/file.README.html +130 -0
- data/dev_root/documentation/public/doc/file_list.html +66 -0
- data/dev_root/documentation/public/doc/frames.html +26 -0
- data/dev_root/documentation/public/doc/index.html +130 -0
- data/dev_root/documentation/public/doc/js/app.js +219 -0
- data/dev_root/documentation/public/doc/js/full_list.js +181 -0
- data/dev_root/documentation/public/doc/js/jquery.js +4 -0
- data/dev_root/documentation/public/doc/method_list.html +429 -0
- data/dev_root/documentation/public/doc/top-level-namespace.html +114 -0
- data/dev_root/documentation/sass/main.sass +38 -0
- data/dev_root/documentation/server.haml +8 -0
- data/dev_root/documentation/yard.haml +1 -0
- data/lib/easy_html_creator.rb +4 -1
- data/lib/ehc_command_tasks.rb +112 -0
- data/lib/generator/generator.rb +2 -2
- data/lib/generator/haml_generator.rb +3 -0
- data/{dev_root/shared → lib/generator}/helper/activesupport_override.rb +6 -0
- data/lib/generator/structure_generator.rb +0 -2
- data/lib/server/dispatcher.rb +5 -2
- data/lib/server/request.rb +2 -1
- data/lib/server/server.rb +2 -2
- metadata +94 -96
- data/bin/generateFiles +0 -5
- data/bin/initDevRoot +0 -21
- data/bin/startServer +0 -3
- data/dev_root/test1/partials/_footer.haml +0 -1
- data/dev_root/test1/partials/_header.haml +0 -1
- data/dev_root/test2/coffee/test.coffee +0 -28
- data/dev_root/test2/index.haml +0 -4
- data/dev_root/test2/layout.haml +0 -7
- data/dev_root/test2/partials/title.haml +0 -1
- data/dev_root/test2/sass/test.sass +0 -3
@@ -0,0 +1,356 @@
|
|
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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>
|
7
|
+
Class: Server::Server
|
8
|
+
|
9
|
+
— Documentation by YARD 0.8.7.6
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
19
|
+
relpath = '../';
|
20
|
+
framesUrl = "../frames.html#!Server/Server.html";
|
21
|
+
</script>
|
22
|
+
|
23
|
+
|
24
|
+
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
25
|
+
|
26
|
+
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
27
|
+
|
28
|
+
|
29
|
+
</head>
|
30
|
+
<body>
|
31
|
+
<div id="header">
|
32
|
+
<div id="menu">
|
33
|
+
|
34
|
+
<a href="../_index.html">Index (S)</a> »
|
35
|
+
<span class='title'><span class='object_link'><a href="../Server.html" title="Server (module)">Server</a></span></span>
|
36
|
+
»
|
37
|
+
<span class="title">Server</span>
|
38
|
+
|
39
|
+
|
40
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<div id="search">
|
44
|
+
|
45
|
+
<a class="full_list_link" id="class_list_link"
|
46
|
+
href="../class_list.html">
|
47
|
+
Class List
|
48
|
+
</a>
|
49
|
+
|
50
|
+
<a class="full_list_link" id="method_list_link"
|
51
|
+
href="../method_list.html">
|
52
|
+
Method List
|
53
|
+
</a>
|
54
|
+
|
55
|
+
<a class="full_list_link" id="file_list_link"
|
56
|
+
href="../file_list.html">
|
57
|
+
File List
|
58
|
+
</a>
|
59
|
+
|
60
|
+
</div>
|
61
|
+
<div class="clear"></div>
|
62
|
+
</div>
|
63
|
+
|
64
|
+
<iframe id="search_frame"></iframe>
|
65
|
+
|
66
|
+
<div id="content"><h1>Class: Server::Server
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
</h1>
|
71
|
+
|
72
|
+
<dl class="box">
|
73
|
+
|
74
|
+
<dt class="r1">Inherits:</dt>
|
75
|
+
<dd class="r1">
|
76
|
+
<span class="inheritName">Object</span>
|
77
|
+
|
78
|
+
<ul class="fullTree">
|
79
|
+
<li>Object</li>
|
80
|
+
|
81
|
+
<li class="next">Server::Server</li>
|
82
|
+
|
83
|
+
</ul>
|
84
|
+
<a href="#" class="inheritanceTree">show all</a>
|
85
|
+
|
86
|
+
</dd>
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
<dt class="r2 last">Defined in:</dt>
|
97
|
+
<dd class="r2 last">lib/server/server.rb</dd>
|
98
|
+
|
99
|
+
</dl>
|
100
|
+
<div class="clear"></div>
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
<h2>
|
111
|
+
Instance Method Summary
|
112
|
+
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
|
113
|
+
</h2>
|
114
|
+
|
115
|
+
<ul class="summary">
|
116
|
+
|
117
|
+
<li class="public ">
|
118
|
+
<span class="summary_signature">
|
119
|
+
|
120
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">- (Server) <strong>initialize</strong>(dispatcher) </a>
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
</span>
|
125
|
+
|
126
|
+
|
127
|
+
<span class="note title constructor">constructor</span>
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
|
136
|
+
<span class="summary_desc"><div class='inline'>
|
137
|
+
<p>A new instance of Server.</p>
|
138
|
+
</div></span>
|
139
|
+
|
140
|
+
</li>
|
141
|
+
|
142
|
+
|
143
|
+
<li class="public ">
|
144
|
+
<span class="summary_signature">
|
145
|
+
|
146
|
+
<a href="#listen-instance_method" title="#listen (instance method)">- (Object) <strong>listen</strong>(port, host) </a>
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
</span>
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
161
|
+
|
162
|
+
</li>
|
163
|
+
|
164
|
+
|
165
|
+
<li class="public ">
|
166
|
+
<span class="summary_signature">
|
167
|
+
|
168
|
+
<a href="#log-instance_method" title="#log (instance method)">- (Object) <strong>log</strong>(msg) </a>
|
169
|
+
|
170
|
+
|
171
|
+
|
172
|
+
</span>
|
173
|
+
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
|
182
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
183
|
+
|
184
|
+
</li>
|
185
|
+
|
186
|
+
|
187
|
+
</ul>
|
188
|
+
|
189
|
+
|
190
|
+
<div id="constructor_details" class="method_details_list">
|
191
|
+
<h2>Constructor Details</h2>
|
192
|
+
|
193
|
+
<div class="method_details first">
|
194
|
+
<h3 class="signature first" id="initialize-instance_method">
|
195
|
+
|
196
|
+
- (<tt><span class='object_link'><a href="" title="Server::Server (class)">Server</a></span></tt>) <strong>initialize</strong>(dispatcher)
|
197
|
+
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
</h3><div class="docstring">
|
203
|
+
<div class="discussion">
|
204
|
+
|
205
|
+
<p>Returns a new instance of Server</p>
|
206
|
+
|
207
|
+
|
208
|
+
</div>
|
209
|
+
</div>
|
210
|
+
<div class="tags">
|
211
|
+
|
212
|
+
|
213
|
+
</div><table class="source_code">
|
214
|
+
<tr>
|
215
|
+
<td>
|
216
|
+
<pre class="lines">
|
217
|
+
|
218
|
+
|
219
|
+
8
|
220
|
+
9
|
221
|
+
10</pre>
|
222
|
+
</td>
|
223
|
+
<td>
|
224
|
+
<pre class="code"><span class="info file"># File 'lib/server/server.rb', line 8</span>
|
225
|
+
|
226
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_dispatcher'>dispatcher</span><span class='rparen'>)</span>
|
227
|
+
<span class='ivar'>@dispatcher</span> <span class='op'>=</span> <span class='id identifier rubyid_dispatcher'>dispatcher</span>
|
228
|
+
<span class='kw'>end</span></pre>
|
229
|
+
</td>
|
230
|
+
</tr>
|
231
|
+
</table>
|
232
|
+
</div>
|
233
|
+
|
234
|
+
</div>
|
235
|
+
|
236
|
+
|
237
|
+
<div id="instance_method_details" class="method_details_list">
|
238
|
+
<h2>Instance Method Details</h2>
|
239
|
+
|
240
|
+
|
241
|
+
<div class="method_details first">
|
242
|
+
<h3 class="signature first" id="listen-instance_method">
|
243
|
+
|
244
|
+
- (<tt>Object</tt>) <strong>listen</strong>(port, host)
|
245
|
+
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
|
250
|
+
</h3><table class="source_code">
|
251
|
+
<tr>
|
252
|
+
<td>
|
253
|
+
<pre class="lines">
|
254
|
+
|
255
|
+
|
256
|
+
12
|
257
|
+
13
|
258
|
+
14
|
259
|
+
15
|
260
|
+
16
|
261
|
+
17
|
262
|
+
18
|
263
|
+
19
|
264
|
+
20
|
265
|
+
21
|
266
|
+
22
|
267
|
+
23
|
268
|
+
24
|
269
|
+
25
|
270
|
+
26
|
271
|
+
27
|
272
|
+
28
|
273
|
+
29
|
274
|
+
30
|
275
|
+
31
|
276
|
+
32
|
277
|
+
33
|
278
|
+
34
|
279
|
+
35
|
280
|
+
36</pre>
|
281
|
+
</td>
|
282
|
+
<td>
|
283
|
+
<pre class="code"><span class="info file"># File 'lib/server/server.rb', line 12</span>
|
284
|
+
|
285
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_listen'>listen</span><span class='lparen'>(</span><span class='id identifier rubyid_port'>port</span><span class='comma'>,</span> <span class='id identifier rubyid_host'>host</span><span class='rparen'>)</span>
|
286
|
+
<span class='id identifier rubyid_server'>server</span> <span class='op'>=</span> <span class='const'>TCPServer</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span><span class='id identifier rubyid_host'>host</span><span class='comma'>,</span> <span class='id identifier rubyid_port'>port</span><span class='rparen'>)</span>
|
287
|
+
<span class='id identifier rubyid_log'>log</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>Server binded to http://</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_host'>host</span><span class='embexpr_end'>}</span><span class='tstring_content'>:</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_port'>port</span><span class='embexpr_end'>}</span><span class='tstring_end'>"</span></span>
|
288
|
+
|
289
|
+
<span class='id identifier rubyid_loop'>loop</span> <span class='kw'>do</span>
|
290
|
+
<span class='id identifier rubyid_socket'>socket</span> <span class='op'>=</span> <span class='id identifier rubyid_server'>server</span><span class='period'>.</span><span class='id identifier rubyid_accept'>accept</span>
|
291
|
+
<span class='id identifier rubyid_request'>request</span> <span class='op'>=</span> <span class='const'>Request</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='id identifier rubyid_socket'>socket</span>
|
292
|
+
<span class='id identifier rubyid_response'>response</span> <span class='op'>=</span> <span class='const'>Response</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='id identifier rubyid_request'>request</span><span class='comma'>,</span> <span class='kw'>self</span>
|
293
|
+
|
294
|
+
<span class='id identifier rubyid_log'>log</span> <span class='id identifier rubyid_request'>request</span>
|
295
|
+
<span class='kw'>next</span> <span class='kw'>if</span> <span class='id identifier rubyid_request'>request</span><span class='period'>.</span><span class='id identifier rubyid_empty?'>empty?</span>
|
296
|
+
|
297
|
+
<span class='kw'>begin</span>
|
298
|
+
<span class='ivar'>@dispatcher</span><span class='period'>.</span><span class='id identifier rubyid_dispatch'>dispatch</span><span class='lparen'>(</span><span class='id identifier rubyid_request'>request</span><span class='comma'>,</span> <span class='id identifier rubyid_response'>response</span><span class='comma'>,</span> <span class='kw'>self</span><span class='rparen'>)</span>
|
299
|
+
<span class='kw'>rescue</span> <span class='const'>Exception</span> <span class='op'>=></span> <span class='id identifier rubyid_e'>e</span>
|
300
|
+
<span class='id identifier rubyid_msg'>msg</span> <span class='op'>=</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_e'>e</span><span class='period'>.</span><span class='id identifier rubyid_backtrace'>backtrace</span><span class='period'>.</span><span class='id identifier rubyid_first'>first</span><span class='embexpr_end'>}</span><span class='tstring_content'>: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_e'>e</span><span class='period'>.</span><span class='id identifier rubyid_message'>message</span><span class='embexpr_end'>}</span><span class='tstring_content'> (</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_e'>e</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='embexpr_end'>}</span><span class='tstring_content'>)</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='id identifier rubyid_e'>e</span><span class='period'>.</span><span class='id identifier rubyid_backtrace'>backtrace</span><span class='period'>.</span><span class='id identifier rubyid_drop'>drop</span><span class='lparen'>(</span><span class='int'>1</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_map'>map</span><span class='lbrace'>{</span><span class='op'>|</span><span class='id identifier rubyid_s'>s</span><span class='op'>|</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>\t</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_s'>s</span><span class='embexpr_end'>}</span><span class='tstring_end'>"</span></span><span class='rbrace'>}</span>
|
301
|
+
<span class='id identifier rubyid_log'>log</span> <span class='id identifier rubyid_msg'>msg</span>
|
302
|
+
<span class='id identifier rubyid_socket'>socket</span><span class='period'>.</span><span class='id identifier rubyid_print'>print</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'><pre style="max-width: 100%; color: red; width: 100%; font-size:20px; white-space: normal;"></span><span class='tstring_end'>'</span></span>
|
303
|
+
<span class='id identifier rubyid_socket'>socket</span><span class='period'>.</span><span class='id identifier rubyid_print'>print</span> <span class='id identifier rubyid_msg'>msg</span>
|
304
|
+
<span class='id identifier rubyid_socket'>socket</span><span class='period'>.</span><span class='id identifier rubyid_print'>print</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'></pre></span><span class='tstring_end'>'</span></span>
|
305
|
+
<span class='kw'>end</span>
|
306
|
+
|
307
|
+
<span class='id identifier rubyid_socket'>socket</span><span class='period'>.</span><span class='id identifier rubyid_close'>close</span>
|
308
|
+
<span class='kw'>end</span>
|
309
|
+
<span class='kw'>end</span></pre>
|
310
|
+
</td>
|
311
|
+
</tr>
|
312
|
+
</table>
|
313
|
+
</div>
|
314
|
+
|
315
|
+
<div class="method_details ">
|
316
|
+
<h3 class="signature " id="log-instance_method">
|
317
|
+
|
318
|
+
- (<tt>Object</tt>) <strong>log</strong>(msg)
|
319
|
+
|
320
|
+
|
321
|
+
|
322
|
+
|
323
|
+
|
324
|
+
</h3><table class="source_code">
|
325
|
+
<tr>
|
326
|
+
<td>
|
327
|
+
<pre class="lines">
|
328
|
+
|
329
|
+
|
330
|
+
38
|
331
|
+
39
|
332
|
+
40</pre>
|
333
|
+
</td>
|
334
|
+
<td>
|
335
|
+
<pre class="code"><span class="info file"># File 'lib/server/server.rb', line 38</span>
|
336
|
+
|
337
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_log'>log</span> <span class='id identifier rubyid_msg'>msg</span>
|
338
|
+
<span class='const'>STDERR</span><span class='period'>.</span><span class='id identifier rubyid_puts'>puts</span> <span class='id identifier rubyid_msg'>msg</span>
|
339
|
+
<span class='kw'>end</span></pre>
|
340
|
+
</td>
|
341
|
+
</tr>
|
342
|
+
</table>
|
343
|
+
</div>
|
344
|
+
|
345
|
+
</div>
|
346
|
+
|
347
|
+
</div>
|
348
|
+
|
349
|
+
<div id="footer">
|
350
|
+
Generated on Sun Dec 21 19:55:50 2014 by
|
351
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
352
|
+
0.8.7.6 (ruby-2.1.3).
|
353
|
+
</div>
|
354
|
+
|
355
|
+
</body>
|
356
|
+
</html>
|
@@ -0,0 +1,260 @@
|
|
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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>
|
7
|
+
Documentation by YARD 0.8.7.6
|
8
|
+
|
9
|
+
</title>
|
10
|
+
|
11
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8">
|
16
|
+
hasFrames = window.top.frames.main ? true : false;
|
17
|
+
relpath = '';
|
18
|
+
framesUrl = "frames.html#!_index.html";
|
19
|
+
</script>
|
20
|
+
|
21
|
+
|
22
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
23
|
+
|
24
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
25
|
+
|
26
|
+
|
27
|
+
</head>
|
28
|
+
<body>
|
29
|
+
<div id="header">
|
30
|
+
<div id="menu">
|
31
|
+
|
32
|
+
|
33
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<div id="search">
|
37
|
+
|
38
|
+
<a class="full_list_link" id="class_list_link"
|
39
|
+
href="class_list.html">
|
40
|
+
Class List
|
41
|
+
</a>
|
42
|
+
|
43
|
+
<a class="full_list_link" id="method_list_link"
|
44
|
+
href="method_list.html">
|
45
|
+
Method List
|
46
|
+
</a>
|
47
|
+
|
48
|
+
<a class="full_list_link" id="file_list_link"
|
49
|
+
href="file_list.html">
|
50
|
+
File List
|
51
|
+
</a>
|
52
|
+
|
53
|
+
</div>
|
54
|
+
<div class="clear"></div>
|
55
|
+
</div>
|
56
|
+
|
57
|
+
<iframe id="search_frame"></iframe>
|
58
|
+
|
59
|
+
<div id="content"><h1 class="noborder title">Documentation by YARD 0.8.7.6</h1>
|
60
|
+
<div id="listing">
|
61
|
+
<h1 class="alphaindex">Alphabetic Index</h1>
|
62
|
+
|
63
|
+
<h2>File Listing</h2>
|
64
|
+
<ul id="files" class="index_inline_list">
|
65
|
+
|
66
|
+
|
67
|
+
<li class="r1"><a href="index.html" title="README">README</a></li>
|
68
|
+
|
69
|
+
|
70
|
+
<li class="r2"><a href="file.LICENSE.html" title="LICENSE">LICENSE</a></li>
|
71
|
+
|
72
|
+
|
73
|
+
<li class="r1"><a href="file.CHANGELOG.html" title="CHANGELOG">CHANGELOG</a></li>
|
74
|
+
|
75
|
+
|
76
|
+
</ul>
|
77
|
+
|
78
|
+
<div class="clear"></div>
|
79
|
+
<h2>Namespace Listing A-Z</h2>
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
<table>
|
85
|
+
<tr>
|
86
|
+
<td valign='top' width="33%">
|
87
|
+
|
88
|
+
|
89
|
+
<ul id="alpha_A" class="alpha">
|
90
|
+
<li class="letter">A</li>
|
91
|
+
<ul>
|
92
|
+
|
93
|
+
<li>
|
94
|
+
<span class='object_link'><a href="ActivesupportOverride.html" title="ActivesupportOverride (module)">ActivesupportOverride</a></span>
|
95
|
+
|
96
|
+
</li>
|
97
|
+
|
98
|
+
</ul>
|
99
|
+
</ul>
|
100
|
+
|
101
|
+
|
102
|
+
<ul id="alpha_C" class="alpha">
|
103
|
+
<li class="letter">C</li>
|
104
|
+
<ul>
|
105
|
+
|
106
|
+
<li>
|
107
|
+
<span class='object_link'><a href="Generator/CoffeeGenerator.html" title="Generator::CoffeeGenerator (class)">CoffeeGenerator</a></span>
|
108
|
+
|
109
|
+
<small>(Generator)</small>
|
110
|
+
|
111
|
+
</li>
|
112
|
+
|
113
|
+
<li>
|
114
|
+
<span class='object_link'><a href="Generator/Context.html" title="Generator::Context (class)">Context</a></span>
|
115
|
+
|
116
|
+
<small>(Generator)</small>
|
117
|
+
|
118
|
+
</li>
|
119
|
+
|
120
|
+
</ul>
|
121
|
+
</ul>
|
122
|
+
|
123
|
+
|
124
|
+
<ul id="alpha_D" class="alpha">
|
125
|
+
<li class="letter">D</li>
|
126
|
+
<ul>
|
127
|
+
|
128
|
+
<li>
|
129
|
+
<span class='object_link'><a href="Server/Dispatcher.html" title="Server::Dispatcher (class)">Dispatcher</a></span>
|
130
|
+
|
131
|
+
<small>(Server)</small>
|
132
|
+
|
133
|
+
</li>
|
134
|
+
|
135
|
+
</ul>
|
136
|
+
</ul>
|
137
|
+
|
138
|
+
|
139
|
+
<ul id="alpha_E" class="alpha">
|
140
|
+
<li class="letter">E</li>
|
141
|
+
<ul>
|
142
|
+
|
143
|
+
<li>
|
144
|
+
<span class='object_link'><a href="EhcCommandTasks.html" title="EhcCommandTasks (class)">EhcCommandTasks</a></span>
|
145
|
+
|
146
|
+
</li>
|
147
|
+
|
148
|
+
</ul>
|
149
|
+
</ul>
|
150
|
+
|
151
|
+
|
152
|
+
<ul id="alpha_G" class="alpha">
|
153
|
+
<li class="letter">G</li>
|
154
|
+
<ul>
|
155
|
+
|
156
|
+
<li>
|
157
|
+
<span class='object_link'><a href="Generator/Generator.html" title="Generator::Generator (class)">Generator</a></span>
|
158
|
+
|
159
|
+
<small>(Generator)</small>
|
160
|
+
|
161
|
+
</li>
|
162
|
+
|
163
|
+
<li>
|
164
|
+
<span class='object_link'><a href="Generator.html" title="Generator (module)">Generator</a></span>
|
165
|
+
|
166
|
+
</li>
|
167
|
+
|
168
|
+
</ul>
|
169
|
+
</ul>
|
170
|
+
|
171
|
+
|
172
|
+
<ul id="alpha_H" class="alpha">
|
173
|
+
<li class="letter">H</li>
|
174
|
+
<ul>
|
175
|
+
|
176
|
+
<li>
|
177
|
+
<span class='object_link'><a href="Generator/HamlGenerator.html" title="Generator::HamlGenerator (class)">HamlGenerator</a></span>
|
178
|
+
|
179
|
+
<small>(Generator)</small>
|
180
|
+
|
181
|
+
</li>
|
182
|
+
|
183
|
+
</ul>
|
184
|
+
</ul>
|
185
|
+
|
186
|
+
|
187
|
+
<ul id="alpha_R" class="alpha">
|
188
|
+
<li class="letter">R</li>
|
189
|
+
<ul>
|
190
|
+
|
191
|
+
<li>
|
192
|
+
<span class='object_link'><a href="Server/Request.html" title="Server::Request (class)">Request</a></span>
|
193
|
+
|
194
|
+
<small>(Server)</small>
|
195
|
+
|
196
|
+
</li>
|
197
|
+
|
198
|
+
<li>
|
199
|
+
<span class='object_link'><a href="Server/Response.html" title="Server::Response (class)">Response</a></span>
|
200
|
+
|
201
|
+
<small>(Server)</small>
|
202
|
+
|
203
|
+
</li>
|
204
|
+
|
205
|
+
</ul>
|
206
|
+
</ul>
|
207
|
+
|
208
|
+
|
209
|
+
</td><td valign='top' width="33%">
|
210
|
+
|
211
|
+
|
212
|
+
<ul id="alpha_S" class="alpha">
|
213
|
+
<li class="letter">S</li>
|
214
|
+
<ul>
|
215
|
+
|
216
|
+
<li>
|
217
|
+
<span class='object_link'><a href="Generator/SassGenerator.html" title="Generator::SassGenerator (class)">SassGenerator</a></span>
|
218
|
+
|
219
|
+
<small>(Generator)</small>
|
220
|
+
|
221
|
+
</li>
|
222
|
+
|
223
|
+
<li>
|
224
|
+
<span class='object_link'><a href="Server.html" title="Server (module)">Server</a></span>
|
225
|
+
|
226
|
+
</li>
|
227
|
+
|
228
|
+
<li>
|
229
|
+
<span class='object_link'><a href="Server/Server.html" title="Server::Server (class)">Server</a></span>
|
230
|
+
|
231
|
+
<small>(Server)</small>
|
232
|
+
|
233
|
+
</li>
|
234
|
+
|
235
|
+
<li>
|
236
|
+
<span class='object_link'><a href="Generator/StructureGenerator.html" title="Generator::StructureGenerator (class)">StructureGenerator</a></span>
|
237
|
+
|
238
|
+
<small>(Generator)</small>
|
239
|
+
|
240
|
+
</li>
|
241
|
+
|
242
|
+
</ul>
|
243
|
+
</ul>
|
244
|
+
|
245
|
+
</td>
|
246
|
+
</tr>
|
247
|
+
</table>
|
248
|
+
|
249
|
+
</div>
|
250
|
+
|
251
|
+
</div>
|
252
|
+
|
253
|
+
<div id="footer">
|
254
|
+
Generated on Sun Dec 21 19:55:50 2014 by
|
255
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
256
|
+
0.8.7.6 (ruby-2.1.3).
|
257
|
+
</div>
|
258
|
+
|
259
|
+
</body>
|
260
|
+
</html>
|