closure 1.4.3 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +12 -12
  3. data/closure-compiler/README.md +503 -0
  4. data/closure-compiler/compiler.jar +0 -0
  5. data/closure-templates/SoyToJsSrcCompiler.jar +0 -0
  6. data/closure-templates/soyutils.js +1593 -469
  7. data/closure-templates/soyutils_usegoog.js +1105 -223
  8. data/docs/SCRIPT.md +5 -5
  9. data/docs/closure/Closure/BeanShell.html +63 -54
  10. data/docs/closure/Closure/Compiler/Compilation.html +124 -107
  11. data/docs/closure/Closure/Compiler/Error.html +28 -21
  12. data/docs/closure/Closure/Compiler.html +81 -76
  13. data/docs/closure/Closure/FileResponse.html +113 -98
  14. data/docs/closure/Closure/Goog.html +264 -253
  15. data/docs/closure/Closure/Middleware.html +66 -55
  16. data/docs/closure/Closure/Script/NotFound.html +28 -21
  17. data/docs/closure/Closure/Script/RenderStackOverflow.html +28 -21
  18. data/docs/closure/Closure/Script.html +212 -203
  19. data/docs/closure/Closure/Server.html +100 -90
  20. data/docs/closure/Closure/ShowExceptions.html +63 -52
  21. data/docs/closure/Closure/Sources.html +254 -246
  22. data/docs/closure/Closure/Templates/Error.html +28 -21
  23. data/docs/closure/Closure/Templates.html +88 -80
  24. data/docs/closure/Closure.html +181 -163
  25. data/docs/closure/_index.html +42 -38
  26. data/docs/closure/class_list.html +19 -8
  27. data/docs/closure/css/full_list.css +4 -2
  28. data/docs/closure/css/style.css +68 -51
  29. data/docs/closure/file.LICENSE.html +24 -217
  30. data/docs/closure/file.README.html +54 -47
  31. data/docs/closure/file_list.html +20 -9
  32. data/docs/closure/frames.html +18 -5
  33. data/docs/closure/index.html +54 -47
  34. data/docs/closure/js/app.js +60 -46
  35. data/docs/closure/js/full_list.js +24 -10
  36. data/docs/closure/js/jquery.js +4 -16
  37. data/docs/closure/method_list.html +74 -175
  38. data/docs/closure/top-level-namespace.html +29 -20
  39. data/lib/closure/compiler.rb +32 -42
  40. data/lib/closure/goog.rb +12 -12
  41. data/lib/closure/server.rb +6 -6
  42. data/lib/closure/show_exceptions.rb +15 -12
  43. data/lib/closure/version.rb +1 -1
  44. data/scripts/git.erb +183 -0
  45. data/scripts/hello/compiler.js.erb +2 -2
  46. data/scripts/hello/hello.js +1 -1
  47. data/scripts/hello/index.erb +6 -0
  48. data/scripts/hello/legume.js +12 -7
  49. data/scripts/index.erb +15 -13
  50. data/scripts/modules/compiler.js.erb +3 -3
  51. data/scripts/modules/compiler_build.js +3 -3
  52. data/scripts/modules/compiler_build.map +13 -12159
  53. data/scripts/modules/compiler_build_api.js +1 -1
  54. data/scripts/modules/compiler_build_app.js +74 -71
  55. data/scripts/modules/compiler_build_settings.js +2 -2
  56. data/scripts/modules/index.erb +5 -3
  57. data/scripts/modules/settings.js +1 -1
  58. data/scripts/svn.erb +11 -11
  59. data/scripts/welcome.erb +7 -6
  60. metadata +65 -81
  61. data/closure-compiler/README +0 -292
  62. data/scripts/hello/compiler_build.js +0 -5
  63. data/scripts/hello/compiler_build.map +0 -748
  64. data/scripts/hello/compiler_debug.js +0 -119
  65. data/scripts/modules/compiler_debug.js +0 -6
  66. data/scripts/modules/compiler_debug_api.js +0 -11
  67. data/scripts/modules/compiler_debug_app.js +0 -2414
  68. data/scripts/modules/compiler_debug_settings.js +0 -39
  69. data/scripts/rails/index.erb +0 -46
  70. data/scripts/rails/rails_ujs.js +0 -96
@@ -8,18 +8,23 @@
8
8
 
9
9
  <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
10
10
 
11
-
11
+
12
12
 
13
13
  <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
14
14
 
15
15
  <script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
16
16
 
17
-
17
+
18
+ <title>Method List</title>
18
19
  <base id="base_target" target="_parent" />
19
20
  </head>
20
21
  <body>
21
22
  <script type="text/javascript" charset="utf-8">
22
- if (window.top.frames.main) {
23
+ var hasFrames = false;
24
+ try {
25
+ hasFrames = window.top.frames.main ? true : false;
26
+ } catch (e) { }
27
+ if (hasFrames) {
23
28
  document.getElementById('base_target').target = 'main';
24
29
  document.body.className = 'frames';
25
30
  }
@@ -28,463 +33,357 @@
28
33
  <h1 id="full_list_header">Method List</h1>
29
34
  <div id="nav">
30
35
 
31
- <a target="_self" href="class_list.html">Classes</a>
36
+ <span><a target="_self" href="class_list.html">
37
+ Classes
38
+ </a></span>
32
39
 
33
- <a target="_self" href="method_list.html">Methods</a>
40
+ <span><a target="_self" href="method_list.html">
41
+ Methods
42
+ </a></span>
34
43
 
35
- <a target="_self" href="file_list.html">Files</a>
44
+ <span><a target="_self" href="file_list.html">
45
+ Files
46
+ </a></span>
36
47
 
37
48
  </div>
38
49
  <div id="search">Search: <input type="text" /></div>
39
50
 
40
- <ul id="full_list" class="methods">
51
+ <ul id="full_list" class="method">
41
52
 
42
53
 
43
54
  <li class="r1 ">
44
55
  <span class='object_link'><a href="Closure/Compiler/Compilation.html#%3C%3C-instance_method" title="Closure::Compiler::Compilation#&lt;&lt; (method)">#&lt;&lt;</a></span>
45
-
46
- <small>Closure::Compiler::Compilation</small>
47
-
56
+ <small>Closure::Compiler::Compilation</small>
48
57
  </li>
49
58
 
50
59
 
51
60
  <li class="r2 ">
52
61
  <span class='object_link'><a href="Closure/Sources.html#add-instance_method" title="Closure::Sources#add (method)">#add</a></span>
53
-
54
- <small>Closure::Sources</small>
55
-
62
+ <small>Closure::Sources</small>
56
63
  </li>
57
64
 
58
65
 
59
66
  <li class="r1 ">
60
67
  <span class='object_link'><a href="Closure/Goog.html#add_dependency-instance_method" title="Closure::Goog#add_dependency (method)">#add_dependency</a></span>
61
-
62
- <small>Closure::Goog</small>
63
-
68
+ <small>Closure::Goog</small>
64
69
  </li>
65
70
 
66
71
 
67
72
  <li class="r2 ">
68
73
  <span class='object_link'><a href="Closure.html#add_source-class_method" title="Closure.add_source (method)">add_source</a></span>
69
-
70
- <small>Closure</small>
71
-
74
+ <small>Closure</small>
72
75
  </li>
73
76
 
74
77
 
75
78
  <li class="r1 ">
76
79
  <span class='object_link'><a href="Closure/Goog.html#base_js-instance_method" title="Closure::Goog#base_js (method)">#base_js</a></span>
77
-
78
- <small>Closure::Goog</small>
79
-
80
+ <small>Closure::Goog</small>
80
81
  </li>
81
82
 
82
83
 
83
84
  <li class="r2 ">
84
85
  <span class='object_link'><a href="Closure/Sources.html#base_js-instance_method" title="Closure::Sources#base_js (method)">#base_js</a></span>
85
-
86
- <small>Closure::Sources</small>
87
-
86
+ <small>Closure::Sources</small>
88
87
  </li>
89
88
 
90
89
 
91
90
  <li class="r1 ">
92
91
  <span class='object_link'><a href="Closure.html#base_path-class_method" title="Closure.base_path (method)">base_path</a></span>
93
-
94
- <small>Closure</small>
95
-
92
+ <small>Closure</small>
96
93
  </li>
97
94
 
98
95
 
99
96
  <li class="r2 ">
100
97
  <span class='object_link'><a href="Closure/ShowExceptions.html#call-instance_method" title="Closure::ShowExceptions#call (method)">#call</a></span>
101
-
102
- <small>Closure::ShowExceptions</small>
103
-
98
+ <small>Closure::ShowExceptions</small>
104
99
  </li>
105
100
 
106
101
 
107
102
  <li class="r1 ">
108
103
  <span class='object_link'><a href="Closure/Middleware.html#call-instance_method" title="Closure::Middleware#call (method)">#call</a></span>
109
-
110
- <small>Closure::Middleware</small>
111
-
104
+ <small>Closure::Middleware</small>
112
105
  </li>
113
106
 
114
107
 
115
108
  <li class="r2 ">
116
109
  <span class='object_link'><a href="Closure/Server.html#call-instance_method" title="Closure::Server#call (method)">#call</a></span>
117
-
118
- <small>Closure::Server</small>
119
-
110
+ <small>Closure::Server</small>
120
111
  </li>
121
112
 
122
113
 
123
114
  <li class="r1 ">
124
115
  <span class='object_link'><a href="Closure/Templates.html#compile-class_method" title="Closure::Templates.compile (method)">compile</a></span>
125
-
126
- <small>Closure::Templates</small>
127
-
116
+ <small>Closure::Templates</small>
128
117
  </li>
129
118
 
130
119
 
131
120
  <li class="r2 ">
132
121
  <span class='object_link'><a href="Closure/Goog.html#compile-instance_method" title="Closure::Goog#compile (method)">#compile</a></span>
133
-
134
- <small>Closure::Goog</small>
135
-
122
+ <small>Closure::Goog</small>
136
123
  </li>
137
124
 
138
125
 
139
126
  <li class="r1 ">
140
127
  <span class='object_link'><a href="Closure/Compiler.html#compile-class_method" title="Closure::Compiler.compile (method)">compile</a></span>
141
-
142
- <small>Closure::Compiler</small>
143
-
128
+ <small>Closure::Compiler</small>
144
129
  </li>
145
130
 
146
131
 
147
132
  <li class="r2 ">
148
133
  <span class='object_link'><a href="Closure.html#config-class_method" title="Closure.config (method)">config</a></span>
149
-
150
- <small>Closure</small>
151
-
134
+ <small>Closure</small>
152
135
  </li>
153
136
 
154
137
 
155
138
  <li class="r1 ">
156
139
  <span class='object_link'><a href="Closure/Goog.html#deps_js-instance_method" title="Closure::Goog#deps_js (method)">#deps_js</a></span>
157
-
158
- <small>Closure::Goog</small>
159
-
140
+ <small>Closure::Goog</small>
160
141
  </li>
161
142
 
162
143
 
163
144
  <li class="r2 ">
164
145
  <span class='object_link'><a href="Closure/Sources.html#deps_js-instance_method" title="Closure::Sources#deps_js (method)">#deps_js</a></span>
165
-
166
- <small>Closure::Sources</small>
167
-
146
+ <small>Closure::Sources</small>
168
147
  </li>
169
148
 
170
149
 
171
150
  <li class="r1 ">
172
151
  <span class='object_link'><a href="Closure/Sources.html#deps_response-instance_method" title="Closure::Sources#deps_response (method)">#deps_response</a></span>
173
-
174
- <small>Closure::Sources</small>
175
-
152
+ <small>Closure::Sources</small>
176
153
  </li>
177
154
 
178
155
 
179
156
  <li class="r2 ">
180
157
  <span class='object_link'><a href="Closure/Goog.html#deps_response-instance_method" title="Closure::Goog#deps_response (method)">#deps_response</a></span>
181
-
182
- <small>Closure::Goog</small>
183
-
158
+ <small>Closure::Goog</small>
184
159
  </li>
185
160
 
186
161
 
187
162
  <li class="r1 ">
188
163
  <span class='object_link'><a href="Closure/Sources.html#dwell-instance_method" title="Closure::Sources#dwell (method)">#dwell</a></span>
189
-
190
- <small>Closure::Sources</small>
191
-
164
+ <small>Closure::Sources</small>
192
165
  </li>
193
166
 
194
167
 
195
168
  <li class="r2 ">
196
169
  <span class='object_link'><a href="Closure/FileResponse.html#each-instance_method" title="Closure::FileResponse#each (method)">#each</a></span>
197
-
198
- <small>Closure::FileResponse</small>
199
-
170
+ <small>Closure::FileResponse</small>
200
171
  </li>
201
172
 
202
173
 
203
174
  <li class="r1 ">
204
175
  <span class='object_link'><a href="Closure/Goog.html#each-instance_method" title="Closure::Goog#each (method)">#each</a></span>
205
-
206
- <small>Closure::Goog</small>
207
-
176
+ <small>Closure::Goog</small>
208
177
  </li>
209
178
 
210
179
 
211
180
  <li class="r2 ">
212
181
  <span class='object_link'><a href="Closure/Sources.html#each-instance_method" title="Closure::Sources#each (method)">#each</a></span>
213
-
214
- <small>Closure::Sources</small>
215
-
182
+ <small>Closure::Sources</small>
216
183
  </li>
217
184
 
218
185
 
219
186
  <li class="r1 ">
220
187
  <span class='object_link'><a href="Closure/Script.html#expand_path-instance_method" title="Closure::Script#expand_path (method)">#expand_path</a></span>
221
-
222
- <small>Closure::Script</small>
223
-
188
+ <small>Closure::Script</small>
224
189
  </li>
225
190
 
226
191
 
227
192
  <li class="r2 ">
228
193
  <span class='object_link'><a href="Closure/Script.html#expand_src-instance_method" title="Closure::Script#expand_src (method)">#expand_src</a></span>
229
-
230
- <small>Closure::Script</small>
231
-
194
+ <small>Closure::Script</small>
232
195
  </li>
233
196
 
234
197
 
235
198
  <li class="r1 ">
236
199
  <span class='object_link'><a href="Closure/FileResponse.html#filename-instance_method" title="Closure::FileResponse#filename (method)">#filename</a></span>
237
-
238
- <small>Closure::FileResponse</small>
239
-
200
+ <small>Closure::FileResponse</small>
240
201
  </li>
241
202
 
242
203
 
243
204
  <li class="r2 ">
244
205
  <span class='object_link'><a href="Closure/Sources.html#files_for-instance_method" title="Closure::Sources#files_for (method)">#files_for</a></span>
245
-
246
- <small>Closure::Sources</small>
247
-
206
+ <small>Closure::Sources</small>
248
207
  </li>
249
208
 
250
209
 
251
210
  <li class="r1 ">
252
211
  <span class='object_link'><a href="Closure/Goog.html#files_for-instance_method" title="Closure::Goog#files_for (method)">#files_for</a></span>
253
-
254
- <small>Closure::Goog</small>
255
-
212
+ <small>Closure::Goog</small>
256
213
  </li>
257
214
 
258
215
 
259
216
  <li class="r2 ">
260
217
  <span class='object_link'><a href="Closure/FileResponse.html#finish-instance_method" title="Closure::FileResponse#finish (method)">#finish</a></span>
261
-
262
- <small>Closure::FileResponse</small>
263
-
218
+ <small>Closure::FileResponse</small>
264
219
  </li>
265
220
 
266
221
 
267
222
  <li class="r1 ">
268
223
  <span class='object_link'><a href="Closure/FileResponse.html#found%3F-instance_method" title="Closure::FileResponse#found? (method)">#found?</a></span>
269
-
270
- <small>Closure::FileResponse</small>
271
-
224
+ <small>Closure::FileResponse</small>
272
225
  </li>
273
226
 
274
227
 
275
228
  <li class="r2 ">
276
229
  <span class='object_link'><a href="Closure/Script.html#goog-instance_method" title="Closure::Script#goog (method)">#goog</a></span>
277
-
278
- <small>Closure::Script</small>
279
-
230
+ <small>Closure::Script</small>
280
231
  </li>
281
232
 
282
233
 
283
234
  <li class="r1 ">
284
235
  <span class='object_link'><a href="Closure/Server.html#initialize-instance_method" title="Closure::Server#initialize (method)">#initialize</a></span>
285
-
286
- <small>Closure::Server</small>
287
-
236
+ <small>Closure::Server</small>
288
237
  </li>
289
238
 
290
239
 
291
240
  <li class="r2 ">
292
241
  <span class='object_link'><a href="Closure/Goog.html#initialize-instance_method" title="Closure::Goog#initialize (method)">#initialize</a></span>
293
-
294
- <small>Closure::Goog</small>
295
-
242
+ <small>Closure::Goog</small>
296
243
  </li>
297
244
 
298
245
 
299
246
  <li class="r1 ">
300
247
  <span class='object_link'><a href="Closure/Sources.html#initialize-instance_method" title="Closure::Sources#initialize (method)">#initialize</a></span>
301
-
302
- <small>Closure::Sources</small>
303
-
248
+ <small>Closure::Sources</small>
304
249
  </li>
305
250
 
306
251
 
307
252
  <li class="r2 ">
308
253
  <span class='object_link'><a href="Closure/ShowExceptions.html#initialize-instance_method" title="Closure::ShowExceptions#initialize (method)">#initialize</a></span>
309
-
310
- <small>Closure::ShowExceptions</small>
311
-
254
+ <small>Closure::ShowExceptions</small>
312
255
  </li>
313
256
 
314
257
 
315
258
  <li class="r1 ">
316
259
  <span class='object_link'><a href="Closure/FileResponse.html#initialize-instance_method" title="Closure::FileResponse#initialize (method)">#initialize</a></span>
317
-
318
- <small>Closure::FileResponse</small>
319
-
260
+ <small>Closure::FileResponse</small>
320
261
  </li>
321
262
 
322
263
 
323
264
  <li class="r2 ">
324
265
  <span class='object_link'><a href="Closure/Middleware.html#initialize-instance_method" title="Closure::Middleware#initialize (method)">#initialize</a></span>
325
-
326
- <small>Closure::Middleware</small>
327
-
266
+ <small>Closure::Middleware</small>
328
267
  </li>
329
268
 
330
269
 
331
270
  <li class="r1 ">
332
271
  <span class='object_link'><a href="Closure/Compiler/Compilation.html#initialize-instance_method" title="Closure::Compiler::Compilation#initialize (method)">#initialize</a></span>
333
-
334
- <small>Closure::Compiler::Compilation</small>
335
-
272
+ <small>Closure::Compiler::Compilation</small>
336
273
  </li>
337
274
 
338
275
 
339
276
  <li class="r2 ">
340
277
  <span class='object_link'><a href="Closure/Script.html#initialize-instance_method" title="Closure::Script#initialize (method)">#initialize</a></span>
341
-
342
- <small>Closure::Script</small>
343
-
278
+ <small>Closure::Script</small>
344
279
  </li>
345
280
 
346
281
 
347
282
  <li class="r1 ">
348
283
  <span class='object_link'><a href="Closure/BeanShell.html#initialize-instance_method" title="Closure::BeanShell#initialize (method)">#initialize</a></span>
349
-
350
- <small>Closure::BeanShell</small>
351
-
284
+ <small>Closure::BeanShell</small>
352
285
  </li>
353
286
 
354
287
 
355
288
  <li class="r2 ">
356
289
  <span class='object_link'><a href="Closure/Sources.html#invalidate-instance_method" title="Closure::Sources#invalidate (method)">#invalidate</a></span>
357
-
358
- <small>Closure::Sources</small>
359
-
290
+ <small>Closure::Sources</small>
360
291
  </li>
361
292
 
362
293
 
363
294
  <li class="r1 ">
364
295
  <span class='object_link'><a href="Closure/Compiler/Compilation.html#javascript-instance_method" title="Closure::Compiler::Compilation#javascript (method)">#javascript</a></span>
365
-
366
- <small>Closure::Compiler::Compilation</small>
367
-
296
+ <small>Closure::Compiler::Compilation</small>
368
297
  </li>
369
298
 
370
299
 
371
300
  <li class="r2 ">
372
301
  <span class='object_link'><a href="Closure/Compiler/Compilation.html#js_output_file-instance_method" title="Closure::Compiler::Compilation#js_output_file (method)">#js_output_file</a></span>
373
-
374
- <small>Closure::Compiler::Compilation</small>
375
-
302
+ <small>Closure::Compiler::Compilation</small>
376
303
  </li>
377
304
 
378
305
 
379
306
  <li class="r1 ">
380
307
  <span class='object_link'><a href="Closure/Compiler/Compilation.html#log-instance_method" title="Closure::Compiler::Compilation#log (method)">#log</a></span>
381
-
382
- <small>Closure::Compiler::Compilation</small>
383
-
308
+ <small>Closure::Compiler::Compilation</small>
384
309
  </li>
385
310
 
386
311
 
387
312
  <li class="r2 ">
388
313
  <span class='object_link'><a href="Closure/Sources.html#namespaces_for-instance_method" title="Closure::Sources#namespaces_for (method)">#namespaces_for</a></span>
389
-
390
- <small>Closure::Sources</small>
391
-
314
+ <small>Closure::Sources</small>
392
315
  </li>
393
316
 
394
317
 
395
318
  <li class="r1 ">
396
319
  <span class='object_link'><a href="Closure/Goog.html#refresh-instance_method" title="Closure::Goog#refresh (method)">#refresh</a></span>
397
-
398
- <small>Closure::Goog</small>
399
-
320
+ <small>Closure::Goog</small>
400
321
  </li>
401
322
 
402
323
 
403
324
  <li class="r2 ">
404
325
  <span class='object_link'><a href="Closure/Script.html#relative_src-instance_method" title="Closure::Script#relative_src (method)">#relative_src</a></span>
405
-
406
- <small>Closure::Script</small>
407
-
326
+ <small>Closure::Script</small>
408
327
  </li>
409
328
 
410
329
 
411
330
  <li class="r1 ">
412
331
  <span class='object_link'><a href="Closure/Script.html#render-instance_method" title="Closure::Script#render (method)">#render</a></span>
413
-
414
- <small>Closure::Script</small>
415
-
332
+ <small>Closure::Script</small>
416
333
  </li>
417
334
 
418
335
 
419
336
  <li class="r2 ">
420
337
  <span class='object_link'><a href="Closure/Script.html#render_stack-instance_method" title="Closure::Script#render_stack (method)">#render_stack</a></span>
421
-
422
- <small>Closure::Script</small>
423
-
338
+ <small>Closure::Script</small>
424
339
  </li>
425
340
 
426
341
 
427
342
  <li class="r1 ">
428
343
  <span class='object_link'><a href="Closure/Script.html#response-instance_method" title="Closure::Script#response (method)">#response</a></span>
429
-
430
- <small>Closure::Script</small>
431
-
344
+ <small>Closure::Script</small>
432
345
  </li>
433
346
 
434
347
 
435
348
  <li class="r2 ">
436
349
  <span class='object_link'><a href="Closure/BeanShell.html#run-instance_method" title="Closure::BeanShell#run (method)">#run</a></span>
437
-
438
- <small>Closure::BeanShell</small>
439
-
350
+ <small>Closure::BeanShell</small>
440
351
  </li>
441
352
 
442
353
 
443
354
  <li class="r1 ">
444
355
  <span class='object_link'><a href="Closure.html#sources-class_method" title="Closure.sources (method)">sources</a></span>
445
-
446
- <small>Closure</small>
447
-
356
+ <small>Closure</small>
448
357
  </li>
449
358
 
450
359
 
451
360
  <li class="r2 ">
452
361
  <span class='object_link'><a href="Closure/Goog.html#soy_to_js-instance_method" title="Closure::Goog#soy_to_js (method)">#soy_to_js</a></span>
453
-
454
- <small>Closure::Goog</small>
455
-
362
+ <small>Closure::Goog</small>
456
363
  </li>
457
364
 
458
365
 
459
366
  <li class="r1 ">
460
367
  <span class='object_link'><a href="Closure/Sources.html#src_for-instance_method" title="Closure::Sources#src_for (method)">#src_for</a></span>
461
-
462
- <small>Closure::Sources</small>
463
-
368
+ <small>Closure::Sources</small>
464
369
  </li>
465
370
 
466
371
 
467
372
  <li class="r2 ">
468
373
  <span class='object_link'><a href="Closure/Goog.html#src_for-instance_method" title="Closure::Goog#src_for (method)">#src_for</a></span>
469
-
470
- <small>Closure::Goog</small>
471
-
374
+ <small>Closure::Goog</small>
472
375
  </li>
473
376
 
474
377
 
475
378
  <li class="r1 ">
476
379
  <span class='object_link'><a href="Closure/Compiler/Compilation.html#to_response-instance_method" title="Closure::Compiler::Compilation#to_response (method)">#to_response</a></span>
477
-
478
- <small>Closure::Compiler::Compilation</small>
479
-
380
+ <small>Closure::Compiler::Compilation</small>
480
381
  </li>
481
382
 
482
383
 
483
384
  <li class="r2 ">
484
385
  <span class='object_link'><a href="Closure.html#welcome-class_method" title="Closure.welcome (method)">welcome</a></span>
485
-
486
- <small>Closure</small>
487
-
386
+ <small>Closure</small>
488
387
  </li>
489
388
 
490
389
 
@@ -6,19 +6,21 @@
6
6
  <title>
7
7
  Top Level Namespace
8
8
 
9
- &mdash; Documentation by YARD 0.7.3
9
+ &mdash; Documentation by YARD 0.8.7.6
10
10
 
11
11
  </title>
12
12
 
13
- <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
13
+ <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
14
14
 
15
- <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
15
+ <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
16
16
 
17
17
  <script type="text/javascript" charset="utf-8">
18
+ hasFrames = window.top.frames.main ? true : false;
18
19
  relpath = '';
19
- if (relpath != '') relpath += '/';
20
+ framesUrl = "frames.html#!top-level-namespace.html";
20
21
  </script>
21
22
 
23
+
22
24
  <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
23
25
 
24
26
  <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
@@ -26,36 +28,41 @@
26
28
 
27
29
  </head>
28
30
  <body>
29
- <script type="text/javascript" charset="utf-8">
30
- if (window.top.frames.main) document.body.className = 'frames';
31
- </script>
32
-
33
31
  <div id="header">
34
32
  <div id="menu">
35
33
 
36
- <a href="_index.html">Index</a> &raquo;
34
+ <a href="_index.html">Index</a> &raquo;
37
35
 
38
36
 
39
37
  <span class="title">Top Level Namespace</span>
40
38
 
41
-
39
+
42
40
  <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
43
41
  </div>
44
42
 
45
43
  <div id="search">
46
44
 
47
- <a id="class_list_link" href="#">Class List</a>
45
+ <a class="full_list_link" id="class_list_link"
46
+ href="class_list.html">
47
+ Class List
48
+ </a>
48
49
 
49
- <a id="method_list_link" href="#">Method List</a>
50
+ <a class="full_list_link" id="method_list_link"
51
+ href="method_list.html">
52
+ Method List
53
+ </a>
50
54
 
51
- <a id="file_list_link" href="#">File List</a>
55
+ <a class="full_list_link" id="file_list_link"
56
+ href="file_list.html">
57
+ File List
58
+ </a>
52
59
 
53
60
  </div>
54
61
  <div class="clear"></div>
55
62
  </div>
56
-
63
+
57
64
  <iframe id="search_frame"></iframe>
58
-
65
+
59
66
  <div id="content"><h1>Top Level Namespace
60
67
 
61
68
 
@@ -76,9 +83,9 @@
76
83
 
77
84
  <h2>Defined Under Namespace</h2>
78
85
  <p class="children">
79
-
86
+
80
87
 
81
-
88
+
82
89
 
83
90
  <strong class="classes">Classes:</strong> <span class='object_link'><a href="Closure.html" title="Closure (class)">Closure</a></span>
84
91
 
@@ -91,12 +98,14 @@
91
98
 
92
99
 
93
100
 
101
+
102
+
94
103
  </div>
95
-
104
+
96
105
  <div id="footer">
97
- Generated on Sun Oct 23 22:43:17 2011 by
106
+ Generated on Sun Mar 20 12:44:16 2016 by
98
107
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
99
- 0.7.3 (ruby-1.9.2).
108
+ 0.8.7.6 (ruby-2.2.1).
100
109
  </div>
101
110
 
102
111
  </body>