actionpack 3.0.6 → 3.0.7.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actionpack might be problematic. Click here for more details.

Files changed (125) hide show
  1. data/CHANGELOG +5 -0
  2. data/lib/abstract_controller.rbc +541 -0
  3. data/lib/abstract_controller/asset_paths.rbc +293 -0
  4. data/lib/abstract_controller/base.rbc +2155 -0
  5. data/lib/abstract_controller/callbacks.rb +1 -1
  6. data/lib/abstract_controller/callbacks.rbc +1562 -0
  7. data/lib/abstract_controller/collector.rbc +686 -0
  8. data/lib/abstract_controller/helpers.rbc +2220 -0
  9. data/lib/abstract_controller/layouts.rbc +2981 -0
  10. data/lib/abstract_controller/logger.rbc +333 -0
  11. data/lib/abstract_controller/rendering.rbc +3072 -0
  12. data/lib/abstract_controller/translation.rbc +383 -0
  13. data/lib/abstract_controller/view_paths.rbc +1292 -0
  14. data/lib/action_controller.rbc +1199 -0
  15. data/lib/action_controller/base.rbc +996 -0
  16. data/lib/action_controller/caching.rbc +1263 -0
  17. data/lib/action_controller/caching/actions.rbc +2339 -0
  18. data/lib/action_controller/caching/fragments.rbc +1464 -0
  19. data/lib/action_controller/caching/pages.rbc +2579 -0
  20. data/lib/action_controller/caching/sweeping.rbc +1743 -0
  21. data/lib/action_controller/deprecated.rbc +136 -0
  22. data/lib/action_controller/deprecated/base.rbc +3156 -0
  23. data/lib/action_controller/log_subscriber.rbc +1424 -0
  24. data/lib/action_controller/metal.rbc +3137 -0
  25. data/lib/action_controller/metal/compatibility.rbc +1570 -0
  26. data/lib/action_controller/metal/conditional_get.rbc +963 -0
  27. data/lib/action_controller/metal/cookies.rbc +381 -0
  28. data/lib/action_controller/metal/exceptions.rbc +856 -0
  29. data/lib/action_controller/metal/flash.rbc +632 -0
  30. data/lib/action_controller/metal/head.rbc +744 -0
  31. data/lib/action_controller/metal/helpers.rbc +1409 -0
  32. data/lib/action_controller/metal/hide_actions.rbc +1192 -0
  33. data/lib/action_controller/metal/http_authentication.rbc +6009 -0
  34. data/lib/action_controller/metal/implicit_render.rb +10 -8
  35. data/lib/action_controller/metal/implicit_render.rbc +495 -0
  36. data/lib/action_controller/metal/instrumentation.rbc +1916 -0
  37. data/lib/action_controller/metal/mime_responds.rbc +2827 -0
  38. data/lib/action_controller/metal/rack_delegation.rbc +683 -0
  39. data/lib/action_controller/metal/redirecting.rbc +1306 -0
  40. data/lib/action_controller/metal/renderers.rbc +2378 -0
  41. data/lib/action_controller/metal/rendering.rbc +1197 -0
  42. data/lib/action_controller/metal/request_forgery_protection.rbc +1272 -0
  43. data/lib/action_controller/metal/rescue.rbc +548 -0
  44. data/lib/action_controller/metal/responder.rbc +2566 -0
  45. data/lib/action_controller/metal/session_management.rbc +225 -0
  46. data/lib/action_controller/metal/streaming.rbc +1586 -0
  47. data/lib/action_controller/metal/url_for.rbc +710 -0
  48. data/lib/action_controller/railtie.rbc +1940 -0
  49. data/lib/action_controller/record_identifier.rbc +777 -0
  50. data/lib/action_controller/vendor/html-scanner.rbc +480 -0
  51. data/lib/action_dispatch.rbc +1370 -0
  52. data/lib/action_dispatch/http/cache.rbc +2914 -0
  53. data/lib/action_dispatch/http/filter_parameters.rbc +1291 -0
  54. data/lib/action_dispatch/http/headers.rbc +706 -0
  55. data/lib/action_dispatch/http/mime_negotiation.rbc +1444 -0
  56. data/lib/action_dispatch/http/mime_type.rbc +4946 -0
  57. data/lib/action_dispatch/http/mime_types.rbc +520 -0
  58. data/lib/action_dispatch/http/parameters.rbc +1497 -0
  59. data/lib/action_dispatch/http/request.rbc +4880 -0
  60. data/lib/action_dispatch/http/response.rbc +3276 -0
  61. data/lib/action_dispatch/http/upload.rbc +1067 -0
  62. data/lib/action_dispatch/http/url.rbc +2115 -0
  63. data/lib/action_dispatch/middleware/best_standards_support.rbc +502 -0
  64. data/lib/action_dispatch/middleware/callbacks.rbc +972 -0
  65. data/lib/action_dispatch/middleware/cookies.rbc +4350 -0
  66. data/lib/action_dispatch/middleware/flash.rbc +3071 -0
  67. data/lib/action_dispatch/middleware/head.rbc +461 -0
  68. data/lib/action_dispatch/middleware/params_parser.rbc +1773 -0
  69. data/lib/action_dispatch/middleware/remote_ip.rbc +1400 -0
  70. data/lib/action_dispatch/middleware/session/abstract_store.rbc +5227 -0
  71. data/lib/action_dispatch/middleware/session/cookie_store.rbc +1345 -0
  72. data/lib/action_dispatch/middleware/show_exceptions.rbc +3627 -0
  73. data/lib/action_dispatch/middleware/stack.rbc +2159 -0
  74. data/lib/action_dispatch/middleware/static.rbc +987 -0
  75. data/lib/action_dispatch/railtie.rbc +383 -0
  76. data/lib/action_dispatch/routing.rbc +520 -0
  77. data/lib/action_dispatch/routing/deprecated_mapper.rbc +13190 -0
  78. data/lib/action_dispatch/routing/mapper.rbc +22006 -0
  79. data/lib/action_dispatch/routing/polymorphic_routes.rbc +2083 -0
  80. data/lib/action_dispatch/routing/route.rbc +1797 -0
  81. data/lib/action_dispatch/routing/route_set.rbc +11847 -0
  82. data/lib/action_dispatch/routing/url_for.rbc +735 -0
  83. data/lib/action_pack.rbc +53 -0
  84. data/lib/action_pack/version.rb +2 -2
  85. data/lib/action_pack/version.rbc +295 -0
  86. data/lib/action_view.rbc +864 -0
  87. data/lib/action_view/base.rbc +2257 -0
  88. data/lib/action_view/context.rbc +327 -0
  89. data/lib/action_view/helpers.rbc +1002 -0
  90. data/lib/action_view/helpers/active_model_helper.rbc +1680 -0
  91. data/lib/action_view/helpers/asset_tag_helper.rbc +8922 -0
  92. data/lib/action_view/helpers/atom_feed_helper.rbc +2872 -0
  93. data/lib/action_view/helpers/cache_helper.rbc +660 -0
  94. data/lib/action_view/helpers/capture_helper.rbc +1242 -0
  95. data/lib/action_view/helpers/csrf_helper.rbc +411 -0
  96. data/lib/action_view/helpers/date_helper.rbc +12404 -0
  97. data/lib/action_view/helpers/debug_helper.rbc +499 -0
  98. data/lib/action_view/helpers/form_helper.rbc +14903 -0
  99. data/lib/action_view/helpers/form_options_helper.rbc +6367 -0
  100. data/lib/action_view/helpers/form_tag_helper.rbc +5961 -0
  101. data/lib/action_view/helpers/javascript_helper.rbc +1611 -0
  102. data/lib/action_view/helpers/number_helper.rbc +6601 -0
  103. data/lib/action_view/helpers/prototype_helper.rbc +11921 -0
  104. data/lib/action_view/helpers/raw_output_helper.rbc +335 -0
  105. data/lib/action_view/helpers/record_tag_helper.rbc +684 -0
  106. data/lib/action_view/helpers/sanitize_helper.rbc +2571 -0
  107. data/lib/action_view/helpers/scriptaculous_helper.rbc +3434 -0
  108. data/lib/action_view/helpers/tag_helper.rbc +1856 -0
  109. data/lib/action_view/helpers/text_helper.rbc +5861 -0
  110. data/lib/action_view/helpers/translation_helper.rbc +1263 -0
  111. data/lib/action_view/helpers/url_helper.rbc +5487 -0
  112. data/lib/action_view/log_subscriber.rbc +732 -0
  113. data/lib/action_view/paths.rbc +1111 -0
  114. data/lib/action_view/railtie.rbc +1043 -0
  115. data/lib/action_view/render/layouts.rbc +943 -0
  116. data/lib/action_view/render/partials.rbc +3615 -0
  117. data/lib/action_view/render/rendering.rbc +1516 -0
  118. data/lib/action_view/template.rbc +3357 -0
  119. data/lib/action_view/template/handler.rbc +1112 -0
  120. data/lib/action_view/template/handlers.rbc +1177 -0
  121. data/lib/action_view/template/handlers/builder.rbc +458 -0
  122. data/lib/action_view/template/handlers/erb.rbc +2483 -0
  123. data/lib/action_view/template/handlers/rjs.rbc +490 -0
  124. data/lib/action_view/template/resolver.rbc +3587 -0
  125. metadata +144 -16
@@ -0,0 +1,333 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 46
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 99
32
+ 7
33
+ 3
34
+ 65
35
+ 49
36
+ 4
37
+ 2
38
+ 13
39
+ 99
40
+ 12
41
+ 7
42
+ 5
43
+ 12
44
+ 7
45
+ 6
46
+ 12
47
+ 65
48
+ 12
49
+ 49
50
+ 7
51
+ 4
52
+ 15
53
+ 49
54
+ 5
55
+ 0
56
+ 15
57
+ 2
58
+ 11
59
+ I
60
+ 6
61
+ I
62
+ 0
63
+ I
64
+ 0
65
+ I
66
+ 0
67
+ n
68
+ p
69
+ 8
70
+ s
71
+ 30
72
+ active_support/core_ext/logger
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 28
78
+ active_support/benchmarkable
79
+ x
80
+ 18
81
+ AbstractController
82
+ x
83
+ 11
84
+ open_module
85
+ x
86
+ 15
87
+ __module_init__
88
+ M
89
+ 1
90
+ n
91
+ n
92
+ x
93
+ 18
94
+ AbstractController
95
+ i
96
+ 28
97
+ 5
98
+ 66
99
+ 99
100
+ 7
101
+ 0
102
+ 65
103
+ 49
104
+ 1
105
+ 2
106
+ 13
107
+ 99
108
+ 12
109
+ 7
110
+ 2
111
+ 12
112
+ 7
113
+ 3
114
+ 12
115
+ 65
116
+ 12
117
+ 49
118
+ 4
119
+ 4
120
+ 15
121
+ 49
122
+ 2
123
+ 0
124
+ 11
125
+ I
126
+ 6
127
+ I
128
+ 0
129
+ I
130
+ 0
131
+ I
132
+ 0
133
+ n
134
+ p
135
+ 5
136
+ x
137
+ 6
138
+ Logger
139
+ x
140
+ 11
141
+ open_module
142
+ x
143
+ 15
144
+ __module_init__
145
+ M
146
+ 1
147
+ n
148
+ n
149
+ x
150
+ 6
151
+ Logger
152
+ i
153
+ 21
154
+ 5
155
+ 66
156
+ 5
157
+ 45
158
+ 0
159
+ 1
160
+ 43
161
+ 2
162
+ 47
163
+ 49
164
+ 3
165
+ 1
166
+ 15
167
+ 5
168
+ 56
169
+ 4
170
+ 47
171
+ 50
172
+ 5
173
+ 0
174
+ 11
175
+ I
176
+ 2
177
+ I
178
+ 0
179
+ I
180
+ 0
181
+ I
182
+ 0
183
+ n
184
+ p
185
+ 6
186
+ x
187
+ 13
188
+ ActiveSupport
189
+ n
190
+ x
191
+ 7
192
+ Concern
193
+ x
194
+ 6
195
+ extend
196
+ M
197
+ 1
198
+ p
199
+ 2
200
+ x
201
+ 9
202
+ for_block
203
+ t
204
+ n
205
+ x
206
+ 6
207
+ Logger
208
+ i
209
+ 19
210
+ 5
211
+ 7
212
+ 0
213
+ 47
214
+ 49
215
+ 1
216
+ 1
217
+ 15
218
+ 5
219
+ 45
220
+ 2
221
+ 3
222
+ 43
223
+ 4
224
+ 47
225
+ 49
226
+ 5
227
+ 1
228
+ 11
229
+ I
230
+ 3
231
+ I
232
+ 0
233
+ I
234
+ 0
235
+ I
236
+ 0
237
+ I
238
+ -2
239
+ p
240
+ 6
241
+ x
242
+ 6
243
+ logger
244
+ x
245
+ 15
246
+ config_accessor
247
+ x
248
+ 13
249
+ ActiveSupport
250
+ n
251
+ x
252
+ 13
253
+ Benchmarkable
254
+ x
255
+ 6
256
+ extend
257
+ p
258
+ 5
259
+ I
260
+ 0
261
+ I
262
+ 9
263
+ I
264
+ 8
265
+ I
266
+ a
267
+ I
268
+ 13
269
+ x
270
+ 81
271
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/logger.rb
272
+ p
273
+ 0
274
+ x
275
+ 8
276
+ included
277
+ p
278
+ 5
279
+ I
280
+ 2
281
+ I
282
+ 6
283
+ I
284
+ d
285
+ I
286
+ 8
287
+ I
288
+ 15
289
+ x
290
+ 81
291
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/logger.rb
292
+ p
293
+ 0
294
+ x
295
+ 13
296
+ attach_method
297
+ p
298
+ 3
299
+ I
300
+ 2
301
+ I
302
+ 5
303
+ I
304
+ 1c
305
+ x
306
+ 81
307
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/logger.rb
308
+ p
309
+ 0
310
+ x
311
+ 13
312
+ attach_method
313
+ p
314
+ 7
315
+ I
316
+ 0
317
+ I
318
+ 1
319
+ I
320
+ 9
321
+ I
322
+ 2
323
+ I
324
+ 12
325
+ I
326
+ 4
327
+ I
328
+ 2e
329
+ x
330
+ 81
331
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/logger.rb
332
+ p
333
+ 0
@@ -0,0 +1,3072 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 46
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 99
32
+ 7
33
+ 3
34
+ 65
35
+ 49
36
+ 4
37
+ 2
38
+ 13
39
+ 99
40
+ 12
41
+ 7
42
+ 5
43
+ 12
44
+ 7
45
+ 6
46
+ 12
47
+ 65
48
+ 12
49
+ 49
50
+ 7
51
+ 4
52
+ 15
53
+ 49
54
+ 5
55
+ 0
56
+ 15
57
+ 2
58
+ 11
59
+ I
60
+ 6
61
+ I
62
+ 0
63
+ I
64
+ 0
65
+ I
66
+ 0
67
+ n
68
+ p
69
+ 8
70
+ s
71
+ 24
72
+ abstract_controller/base
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 11
78
+ action_view
79
+ x
80
+ 18
81
+ AbstractController
82
+ x
83
+ 11
84
+ open_module
85
+ x
86
+ 15
87
+ __module_init__
88
+ M
89
+ 1
90
+ n
91
+ n
92
+ x
93
+ 18
94
+ AbstractController
95
+ i
96
+ 88
97
+ 5
98
+ 66
99
+ 99
100
+ 7
101
+ 0
102
+ 45
103
+ 1
104
+ 2
105
+ 65
106
+ 49
107
+ 3
108
+ 3
109
+ 13
110
+ 99
111
+ 12
112
+ 7
113
+ 4
114
+ 12
115
+ 7
116
+ 5
117
+ 12
118
+ 65
119
+ 12
120
+ 49
121
+ 6
122
+ 4
123
+ 15
124
+ 49
125
+ 4
126
+ 0
127
+ 15
128
+ 99
129
+ 7
130
+ 7
131
+ 44
132
+ 43
133
+ 8
134
+ 43
135
+ 9
136
+ 65
137
+ 49
138
+ 3
139
+ 3
140
+ 13
141
+ 99
142
+ 12
143
+ 7
144
+ 4
145
+ 12
146
+ 7
147
+ 10
148
+ 12
149
+ 65
150
+ 12
151
+ 49
152
+ 6
153
+ 4
154
+ 15
155
+ 49
156
+ 4
157
+ 0
158
+ 15
159
+ 99
160
+ 7
161
+ 11
162
+ 65
163
+ 49
164
+ 12
165
+ 2
166
+ 13
167
+ 99
168
+ 12
169
+ 7
170
+ 13
171
+ 12
172
+ 7
173
+ 14
174
+ 12
175
+ 65
176
+ 12
177
+ 49
178
+ 6
179
+ 4
180
+ 15
181
+ 49
182
+ 13
183
+ 0
184
+ 11
185
+ I
186
+ 6
187
+ I
188
+ 0
189
+ I
190
+ 0
191
+ I
192
+ 0
193
+ n
194
+ p
195
+ 15
196
+ x
197
+ 17
198
+ DoubleRenderError
199
+ x
200
+ 5
201
+ Error
202
+ n
203
+ x
204
+ 10
205
+ open_class
206
+ x
207
+ 14
208
+ __class_init__
209
+ M
210
+ 1
211
+ n
212
+ n
213
+ x
214
+ 17
215
+ DoubleRenderError
216
+ i
217
+ 26
218
+ 5
219
+ 66
220
+ 65
221
+ 7
222
+ 0
223
+ 7
224
+ 1
225
+ 64
226
+ 49
227
+ 2
228
+ 2
229
+ 15
230
+ 99
231
+ 7
232
+ 3
233
+ 7
234
+ 4
235
+ 65
236
+ 67
237
+ 49
238
+ 5
239
+ 0
240
+ 49
241
+ 6
242
+ 4
243
+ 11
244
+ I
245
+ 5
246
+ I
247
+ 0
248
+ I
249
+ 0
250
+ I
251
+ 0
252
+ n
253
+ p
254
+ 7
255
+ x
256
+ 15
257
+ DEFAULT_MESSAGE
258
+ s
259
+ 340
260
+ Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".
261
+ x
262
+ 9
263
+ const_set
264
+ x
265
+ 10
266
+ initialize
267
+ M
268
+ 1
269
+ n
270
+ n
271
+ x
272
+ 10
273
+ initialize
274
+ i
275
+ 22
276
+ 23
277
+ 0
278
+ 10
279
+ 8
280
+ 1
281
+ 19
282
+ 0
283
+ 15
284
+ 20
285
+ 0
286
+ 13
287
+ 10
288
+ 17
289
+ 15
290
+ 45
291
+ 0
292
+ 1
293
+ 54
294
+ 52
295
+ 2
296
+ 1
297
+ 11
298
+ I
299
+ 3
300
+ I
301
+ 1
302
+ I
303
+ 0
304
+ I
305
+ 1
306
+ n
307
+ p
308
+ 3
309
+ x
310
+ 15
311
+ DEFAULT_MESSAGE
312
+ n
313
+ x
314
+ 10
315
+ initialize
316
+ p
317
+ 5
318
+ I
319
+ -1
320
+ I
321
+ 8
322
+ I
323
+ 8
324
+ I
325
+ 9
326
+ I
327
+ 16
328
+ x
329
+ 84
330
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
331
+ p
332
+ 1
333
+ x
334
+ 7
335
+ message
336
+ x
337
+ 17
338
+ method_visibility
339
+ x
340
+ 15
341
+ add_defn_method
342
+ p
343
+ 5
344
+ I
345
+ 2
346
+ I
347
+ 6
348
+ I
349
+ c
350
+ I
351
+ 8
352
+ I
353
+ 1a
354
+ x
355
+ 84
356
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
357
+ p
358
+ 0
359
+ x
360
+ 13
361
+ attach_method
362
+ x
363
+ 9
364
+ I18nProxy
365
+ x
366
+ 4
367
+ I18n
368
+ x
369
+ 6
370
+ Config
371
+ M
372
+ 1
373
+ n
374
+ n
375
+ x
376
+ 9
377
+ I18nProxy
378
+ i
379
+ 54
380
+ 5
381
+ 66
382
+ 5
383
+ 7
384
+ 0
385
+ 7
386
+ 1
387
+ 47
388
+ 49
389
+ 2
390
+ 2
391
+ 15
392
+ 99
393
+ 7
394
+ 3
395
+ 7
396
+ 4
397
+ 65
398
+ 67
399
+ 49
400
+ 5
401
+ 0
402
+ 49
403
+ 6
404
+ 4
405
+ 15
406
+ 99
407
+ 7
408
+ 7
409
+ 7
410
+ 8
411
+ 65
412
+ 67
413
+ 49
414
+ 5
415
+ 0
416
+ 49
417
+ 6
418
+ 4
419
+ 15
420
+ 99
421
+ 7
422
+ 9
423
+ 7
424
+ 10
425
+ 65
426
+ 67
427
+ 49
428
+ 5
429
+ 0
430
+ 49
431
+ 6
432
+ 4
433
+ 11
434
+ I
435
+ 5
436
+ I
437
+ 0
438
+ I
439
+ 0
440
+ I
441
+ 0
442
+ n
443
+ p
444
+ 11
445
+ x
446
+ 15
447
+ original_config
448
+ x
449
+ 14
450
+ lookup_context
451
+ x
452
+ 11
453
+ attr_reader
454
+ x
455
+ 10
456
+ initialize
457
+ M
458
+ 1
459
+ n
460
+ n
461
+ x
462
+ 10
463
+ initialize
464
+ i
465
+ 34
466
+ 20
467
+ 0
468
+ 7
469
+ 0
470
+ 49
471
+ 1
472
+ 1
473
+ 9
474
+ 18
475
+ 20
476
+ 0
477
+ 49
478
+ 0
479
+ 0
480
+ 19
481
+ 0
482
+ 8
483
+ 19
484
+ 1
485
+ 15
486
+ 20
487
+ 0
488
+ 20
489
+ 1
490
+ 17
491
+ 2
492
+ 38
493
+ 2
494
+ 15
495
+ 38
496
+ 3
497
+ 15
498
+ 2
499
+ 11
500
+ I
501
+ 4
502
+ I
503
+ 2
504
+ I
505
+ 2
506
+ I
507
+ 2
508
+ n
509
+ p
510
+ 4
511
+ x
512
+ 15
513
+ original_config
514
+ x
515
+ 11
516
+ respond_to?
517
+ x
518
+ 16
519
+ @original_config
520
+ x
521
+ 15
522
+ @lookup_context
523
+ p
524
+ 7
525
+ I
526
+ -1
527
+ I
528
+ 13
529
+ I
530
+ 0
531
+ I
532
+ 14
533
+ I
534
+ 14
535
+ I
536
+ 15
537
+ I
538
+ 22
539
+ x
540
+ 84
541
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
542
+ p
543
+ 2
544
+ x
545
+ 15
546
+ original_config
547
+ x
548
+ 14
549
+ lookup_context
550
+ x
551
+ 17
552
+ method_visibility
553
+ x
554
+ 15
555
+ add_defn_method
556
+ x
557
+ 6
558
+ locale
559
+ M
560
+ 1
561
+ n
562
+ n
563
+ x
564
+ 6
565
+ locale
566
+ i
567
+ 6
568
+ 39
569
+ 0
570
+ 49
571
+ 1
572
+ 0
573
+ 11
574
+ I
575
+ 1
576
+ I
577
+ 0
578
+ I
579
+ 0
580
+ I
581
+ 0
582
+ n
583
+ p
584
+ 2
585
+ x
586
+ 16
587
+ @original_config
588
+ x
589
+ 6
590
+ locale
591
+ p
592
+ 5
593
+ I
594
+ -1
595
+ I
596
+ 18
597
+ I
598
+ 0
599
+ I
600
+ 19
601
+ I
602
+ 6
603
+ x
604
+ 84
605
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
606
+ p
607
+ 0
608
+ x
609
+ 7
610
+ locale=
611
+ M
612
+ 1
613
+ n
614
+ n
615
+ x
616
+ 7
617
+ locale=
618
+ i
619
+ 12
620
+ 39
621
+ 0
622
+ 20
623
+ 0
624
+ 13
625
+ 18
626
+ 2
627
+ 49
628
+ 1
629
+ 1
630
+ 15
631
+ 11
632
+ I
633
+ 4
634
+ I
635
+ 1
636
+ I
637
+ 1
638
+ I
639
+ 1
640
+ n
641
+ p
642
+ 2
643
+ x
644
+ 15
645
+ @lookup_context
646
+ x
647
+ 7
648
+ locale=
649
+ p
650
+ 5
651
+ I
652
+ -1
653
+ I
654
+ 1c
655
+ I
656
+ 0
657
+ I
658
+ 1d
659
+ I
660
+ c
661
+ x
662
+ 84
663
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
664
+ p
665
+ 1
666
+ x
667
+ 5
668
+ value
669
+ p
670
+ 9
671
+ I
672
+ 2
673
+ I
674
+ 11
675
+ I
676
+ c
677
+ I
678
+ 13
679
+ I
680
+ 1a
681
+ I
682
+ 18
683
+ I
684
+ 28
685
+ I
686
+ 1c
687
+ I
688
+ 36
689
+ x
690
+ 84
691
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
692
+ p
693
+ 0
694
+ x
695
+ 9
696
+ Rendering
697
+ x
698
+ 11
699
+ open_module
700
+ x
701
+ 15
702
+ __module_init__
703
+ M
704
+ 1
705
+ n
706
+ n
707
+ x
708
+ 9
709
+ Rendering
710
+ i
711
+ 244
712
+ 5
713
+ 66
714
+ 5
715
+ 45
716
+ 0
717
+ 1
718
+ 43
719
+ 2
720
+ 47
721
+ 49
722
+ 3
723
+ 1
724
+ 15
725
+ 5
726
+ 45
727
+ 4
728
+ 5
729
+ 43
730
+ 6
731
+ 47
732
+ 49
733
+ 7
734
+ 1
735
+ 15
736
+ 99
737
+ 7
738
+ 8
739
+ 7
740
+ 9
741
+ 65
742
+ 67
743
+ 49
744
+ 10
745
+ 0
746
+ 49
747
+ 11
748
+ 4
749
+ 15
750
+ 99
751
+ 7
752
+ 12
753
+ 65
754
+ 49
755
+ 13
756
+ 2
757
+ 13
758
+ 99
759
+ 12
760
+ 7
761
+ 14
762
+ 12
763
+ 7
764
+ 15
765
+ 12
766
+ 65
767
+ 12
768
+ 49
769
+ 16
770
+ 4
771
+ 15
772
+ 49
773
+ 14
774
+ 0
775
+ 15
776
+ 5
777
+ 7
778
+ 17
779
+ 47
780
+ 49
781
+ 18
782
+ 1
783
+ 15
784
+ 99
785
+ 7
786
+ 17
787
+ 7
788
+ 19
789
+ 65
790
+ 67
791
+ 49
792
+ 10
793
+ 0
794
+ 49
795
+ 11
796
+ 4
797
+ 15
798
+ 99
799
+ 7
800
+ 20
801
+ 7
802
+ 21
803
+ 65
804
+ 67
805
+ 49
806
+ 10
807
+ 0
808
+ 49
809
+ 11
810
+ 4
811
+ 15
812
+ 99
813
+ 7
814
+ 22
815
+ 7
816
+ 23
817
+ 65
818
+ 67
819
+ 49
820
+ 10
821
+ 0
822
+ 49
823
+ 11
824
+ 4
825
+ 15
826
+ 99
827
+ 7
828
+ 24
829
+ 7
830
+ 25
831
+ 65
832
+ 67
833
+ 49
834
+ 10
835
+ 0
836
+ 49
837
+ 11
838
+ 4
839
+ 15
840
+ 99
841
+ 7
842
+ 26
843
+ 7
844
+ 27
845
+ 65
846
+ 67
847
+ 49
848
+ 10
849
+ 0
850
+ 49
851
+ 11
852
+ 4
853
+ 15
854
+ 99
855
+ 7
856
+ 28
857
+ 7
858
+ 29
859
+ 65
860
+ 67
861
+ 49
862
+ 10
863
+ 0
864
+ 49
865
+ 11
866
+ 4
867
+ 15
868
+ 99
869
+ 7
870
+ 30
871
+ 7
872
+ 31
873
+ 65
874
+ 67
875
+ 49
876
+ 10
877
+ 0
878
+ 49
879
+ 11
880
+ 4
881
+ 15
882
+ 99
883
+ 7
884
+ 32
885
+ 7
886
+ 33
887
+ 65
888
+ 67
889
+ 49
890
+ 10
891
+ 0
892
+ 49
893
+ 11
894
+ 4
895
+ 15
896
+ 5
897
+ 48
898
+ 34
899
+ 15
900
+ 99
901
+ 7
902
+ 35
903
+ 7
904
+ 36
905
+ 65
906
+ 67
907
+ 49
908
+ 10
909
+ 0
910
+ 49
911
+ 11
912
+ 4
913
+ 15
914
+ 99
915
+ 7
916
+ 37
917
+ 7
918
+ 38
919
+ 65
920
+ 67
921
+ 49
922
+ 10
923
+ 0
924
+ 49
925
+ 11
926
+ 4
927
+ 15
928
+ 99
929
+ 7
930
+ 39
931
+ 7
932
+ 40
933
+ 65
934
+ 67
935
+ 49
936
+ 10
937
+ 0
938
+ 49
939
+ 11
940
+ 4
941
+ 15
942
+ 99
943
+ 7
944
+ 41
945
+ 7
946
+ 42
947
+ 65
948
+ 67
949
+ 49
950
+ 10
951
+ 0
952
+ 49
953
+ 11
954
+ 4
955
+ 11
956
+ I
957
+ 6
958
+ I
959
+ 0
960
+ I
961
+ 0
962
+ I
963
+ 0
964
+ n
965
+ p
966
+ 43
967
+ x
968
+ 13
969
+ ActiveSupport
970
+ n
971
+ x
972
+ 7
973
+ Concern
974
+ x
975
+ 6
976
+ extend
977
+ x
978
+ 18
979
+ AbstractController
980
+ n
981
+ x
982
+ 9
983
+ ViewPaths
984
+ x
985
+ 7
986
+ include
987
+ x
988
+ 7
989
+ process
990
+ M
991
+ 1
992
+ n
993
+ n
994
+ x
995
+ 7
996
+ process
997
+ i
998
+ 106
999
+ 29
1000
+ 76
1001
+ 1
1002
+ 26
1003
+ 93
1004
+ 0
1005
+ 15
1006
+ 45
1007
+ 0
1008
+ 1
1009
+ 49
1010
+ 2
1011
+ 0
1012
+ 45
1013
+ 3
1014
+ 4
1015
+ 13
1016
+ 71
1017
+ 5
1018
+ 47
1019
+ 9
1020
+ 43
1021
+ 47
1022
+ 49
1023
+ 6
1024
+ 0
1025
+ 13
1026
+ 45
1027
+ 0
1028
+ 7
1029
+ 49
1030
+ 2
1031
+ 0
1032
+ 5
1033
+ 48
1034
+ 8
1035
+ 47
1036
+ 49
1037
+ 9
1038
+ 2
1039
+ 15
1040
+ 8
1041
+ 55
1042
+ 45
1043
+ 0
1044
+ 10
1045
+ 49
1046
+ 2
1047
+ 0
1048
+ 5
1049
+ 48
1050
+ 8
1051
+ 49
1052
+ 5
1053
+ 2
1054
+ 17
1055
+ 2
1056
+ 19
1057
+ 1
1058
+ 15
1059
+ 45
1060
+ 0
1061
+ 11
1062
+ 12
1063
+ 49
1064
+ 12
1065
+ 1
1066
+ 15
1067
+ 2
1068
+ 15
1069
+ 54
1070
+ 89
1071
+ 13
1072
+ 30
1073
+ 8
1074
+ 92
1075
+ 26
1076
+ 45
1077
+ 0
1078
+ 14
1079
+ 20
1080
+ 1
1081
+ 13
1082
+ 18
1083
+ 2
1084
+ 49
1085
+ 12
1086
+ 1
1087
+ 15
1088
+ 15
1089
+ 27
1090
+ 34
1091
+ 45
1092
+ 0
1093
+ 15
1094
+ 20
1095
+ 1
1096
+ 13
1097
+ 18
1098
+ 2
1099
+ 49
1100
+ 12
1101
+ 1
1102
+ 15
1103
+ 15
1104
+ 11
1105
+ I
1106
+ 8
1107
+ I
1108
+ 2
1109
+ I
1110
+ 0
1111
+ I
1112
+ 0
1113
+ I
1114
+ 0
1115
+ p
1116
+ 16
1117
+ x
1118
+ 4
1119
+ I18n
1120
+ n
1121
+ x
1122
+ 6
1123
+ config
1124
+ x
1125
+ 9
1126
+ I18nProxy
1127
+ n
1128
+ x
1129
+ 3
1130
+ new
1131
+ x
1132
+ 8
1133
+ allocate
1134
+ n
1135
+ x
1136
+ 14
1137
+ lookup_context
1138
+ x
1139
+ 10
1140
+ initialize
1141
+ n
1142
+ n
1143
+ x
1144
+ 7
1145
+ config=
1146
+ x
1147
+ 7
1148
+ process
1149
+ n
1150
+ n
1151
+ p
1152
+ 9
1153
+ I
1154
+ -1
1155
+ I
1156
+ 27
1157
+ I
1158
+ 0
1159
+ I
1160
+ 28
1161
+ I
1162
+ 46
1163
+ I
1164
+ 29
1165
+ I
1166
+ 4d
1167
+ I
1168
+ 2b
1169
+ I
1170
+ 6a
1171
+ x
1172
+ 84
1173
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
1174
+ p
1175
+ 2
1176
+ x
1177
+ 14
1178
+ @unnamed_splat
1179
+ x
1180
+ 10
1181
+ old_config
1182
+ x
1183
+ 17
1184
+ method_visibility
1185
+ x
1186
+ 15
1187
+ add_defn_method
1188
+ x
1189
+ 12
1190
+ ClassMethods
1191
+ x
1192
+ 11
1193
+ open_module
1194
+ x
1195
+ 15
1196
+ __module_init__
1197
+ M
1198
+ 1
1199
+ n
1200
+ n
1201
+ x
1202
+ 12
1203
+ ClassMethods
1204
+ i
1205
+ 16
1206
+ 5
1207
+ 66
1208
+ 99
1209
+ 7
1210
+ 0
1211
+ 7
1212
+ 1
1213
+ 65
1214
+ 67
1215
+ 49
1216
+ 2
1217
+ 0
1218
+ 49
1219
+ 3
1220
+ 4
1221
+ 11
1222
+ I
1223
+ 5
1224
+ I
1225
+ 0
1226
+ I
1227
+ 0
1228
+ I
1229
+ 0
1230
+ n
1231
+ p
1232
+ 4
1233
+ x
1234
+ 18
1235
+ view_context_class
1236
+ M
1237
+ 1
1238
+ n
1239
+ n
1240
+ x
1241
+ 18
1242
+ view_context_class
1243
+ i
1244
+ 26
1245
+ 39
1246
+ 0
1247
+ 13
1248
+ 10
1249
+ 25
1250
+ 15
1251
+ 5
1252
+ 19
1253
+ 0
1254
+ 15
1255
+ 45
1256
+ 1
1257
+ 2
1258
+ 45
1259
+ 3
1260
+ 4
1261
+ 43
1262
+ 5
1263
+ 56
1264
+ 6
1265
+ 50
1266
+ 7
1267
+ 1
1268
+ 38
1269
+ 0
1270
+ 11
1271
+ I
1272
+ 4
1273
+ I
1274
+ 1
1275
+ I
1276
+ 0
1277
+ I
1278
+ 0
1279
+ n
1280
+ p
1281
+ 8
1282
+ x
1283
+ 19
1284
+ @view_context_class
1285
+ x
1286
+ 5
1287
+ Class
1288
+ n
1289
+ x
1290
+ 10
1291
+ ActionView
1292
+ n
1293
+ x
1294
+ 4
1295
+ Base
1296
+ M
1297
+ 1
1298
+ p
1299
+ 2
1300
+ x
1301
+ 9
1302
+ for_block
1303
+ t
1304
+ n
1305
+ x
1306
+ 18
1307
+ view_context_class
1308
+ i
1309
+ 69
1310
+ 21
1311
+ 1
1312
+ 0
1313
+ 7
1314
+ 0
1315
+ 49
1316
+ 1
1317
+ 1
1318
+ 9
1319
+ 26
1320
+ 5
1321
+ 21
1322
+ 1
1323
+ 0
1324
+ 49
1325
+ 0
1326
+ 0
1327
+ 49
1328
+ 2
1329
+ 0
1330
+ 47
1331
+ 49
1332
+ 3
1333
+ 1
1334
+ 8
1335
+ 27
1336
+ 1
1337
+ 15
1338
+ 21
1339
+ 1
1340
+ 0
1341
+ 7
1342
+ 4
1343
+ 49
1344
+ 1
1345
+ 1
1346
+ 9
1347
+ 67
1348
+ 5
1349
+ 21
1350
+ 1
1351
+ 0
1352
+ 49
1353
+ 4
1354
+ 0
1355
+ 47
1356
+ 49
1357
+ 3
1358
+ 1
1359
+ 15
1360
+ 5
1361
+ 21
1362
+ 1
1363
+ 0
1364
+ 49
1365
+ 4
1366
+ 0
1367
+ 13
1368
+ 18
1369
+ 2
1370
+ 47
1371
+ 49
1372
+ 5
1373
+ 1
1374
+ 15
1375
+ 8
1376
+ 68
1377
+ 1
1378
+ 11
1379
+ I
1380
+ 4
1381
+ I
1382
+ 0
1383
+ I
1384
+ 0
1385
+ I
1386
+ 0
1387
+ I
1388
+ -2
1389
+ p
1390
+ 6
1391
+ x
1392
+ 7
1393
+ _routes
1394
+ x
1395
+ 11
1396
+ respond_to?
1397
+ x
1398
+ 11
1399
+ url_helpers
1400
+ x
1401
+ 7
1402
+ include
1403
+ x
1404
+ 8
1405
+ _helpers
1406
+ x
1407
+ 8
1408
+ helpers=
1409
+ p
1410
+ 17
1411
+ I
1412
+ 0
1413
+ I
1414
+ 33
1415
+ I
1416
+ a
1417
+ I
1418
+ 34
1419
+ I
1420
+ 1a
1421
+ I
1422
+ 33
1423
+ I
1424
+ 1c
1425
+ I
1426
+ 37
1427
+ I
1428
+ 26
1429
+ I
1430
+ 38
1431
+ I
1432
+ 32
1433
+ I
1434
+ aa
1435
+ I
1436
+ 33
1437
+ I
1438
+ 3b
1439
+ I
1440
+ 43
1441
+ I
1442
+ 37
1443
+ I
1444
+ 45
1445
+ x
1446
+ 84
1447
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
1448
+ p
1449
+ 0
1450
+ x
1451
+ 3
1452
+ new
1453
+ p
1454
+ 11
1455
+ I
1456
+ -1
1457
+ I
1458
+ 2f
1459
+ I
1460
+ 0
1461
+ I
1462
+ 3e
1463
+ I
1464
+ 6
1465
+ I
1466
+ 31
1467
+ I
1468
+ a
1469
+ I
1470
+ 32
1471
+ I
1472
+ 17
1473
+ I
1474
+ 30
1475
+ I
1476
+ 1a
1477
+ x
1478
+ 84
1479
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
1480
+ p
1481
+ 1
1482
+ x
1483
+ 10
1484
+ controller
1485
+ x
1486
+ 17
1487
+ method_visibility
1488
+ x
1489
+ 15
1490
+ add_defn_method
1491
+ p
1492
+ 3
1493
+ I
1494
+ 2
1495
+ I
1496
+ 2f
1497
+ I
1498
+ 10
1499
+ x
1500
+ 84
1501
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
1502
+ p
1503
+ 0
1504
+ x
1505
+ 13
1506
+ attach_method
1507
+ x
1508
+ 18
1509
+ view_context_class
1510
+ x
1511
+ 11
1512
+ attr_writer
1513
+ M
1514
+ 1
1515
+ n
1516
+ n
1517
+ x
1518
+ 18
1519
+ view_context_class
1520
+ i
1521
+ 14
1522
+ 39
1523
+ 0
1524
+ 13
1525
+ 10
1526
+ 13
1527
+ 15
1528
+ 5
1529
+ 49
1530
+ 1
1531
+ 0
1532
+ 49
1533
+ 2
1534
+ 0
1535
+ 11
1536
+ I
1537
+ 2
1538
+ I
1539
+ 0
1540
+ I
1541
+ 0
1542
+ I
1543
+ 0
1544
+ n
1545
+ p
1546
+ 3
1547
+ x
1548
+ 19
1549
+ @view_context_class
1550
+ x
1551
+ 5
1552
+ class
1553
+ x
1554
+ 18
1555
+ view_context_class
1556
+ p
1557
+ 5
1558
+ I
1559
+ -1
1560
+ I
1561
+ 44
1562
+ I
1563
+ 0
1564
+ I
1565
+ 45
1566
+ I
1567
+ e
1568
+ x
1569
+ 84
1570
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
1571
+ p
1572
+ 0
1573
+ x
1574
+ 10
1575
+ initialize
1576
+ M
1577
+ 1
1578
+ n
1579
+ n
1580
+ x
1581
+ 10
1582
+ initialize
1583
+ i
1584
+ 8
1585
+ 1
1586
+ 38
1587
+ 0
1588
+ 15
1589
+ 54
1590
+ 89
1591
+ 1
1592
+ 11
1593
+ I
1594
+ 2
1595
+ I
1596
+ 1
1597
+ I
1598
+ 0
1599
+ I
1600
+ 0
1601
+ I
1602
+ 0
1603
+ p
1604
+ 2
1605
+ x
1606
+ 19
1607
+ @view_context_class
1608
+ x
1609
+ 10
1610
+ initialize
1611
+ p
1612
+ 7
1613
+ I
1614
+ -1
1615
+ I
1616
+ 48
1617
+ I
1618
+ 0
1619
+ I
1620
+ 49
1621
+ I
1622
+ 4
1623
+ I
1624
+ 4a
1625
+ I
1626
+ 8
1627
+ x
1628
+ 84
1629
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
1630
+ p
1631
+ 1
1632
+ x
1633
+ 14
1634
+ @unnamed_splat
1635
+ x
1636
+ 12
1637
+ view_context
1638
+ M
1639
+ 1
1640
+ n
1641
+ n
1642
+ x
1643
+ 12
1644
+ view_context
1645
+ i
1646
+ 39
1647
+ 5
1648
+ 48
1649
+ 0
1650
+ 13
1651
+ 71
1652
+ 1
1653
+ 47
1654
+ 9
1655
+ 28
1656
+ 47
1657
+ 49
1658
+ 2
1659
+ 0
1660
+ 13
1661
+ 5
1662
+ 48
1663
+ 3
1664
+ 5
1665
+ 48
1666
+ 4
1667
+ 5
1668
+ 47
1669
+ 49
1670
+ 5
1671
+ 3
1672
+ 15
1673
+ 8
1674
+ 38
1675
+ 5
1676
+ 48
1677
+ 3
1678
+ 5
1679
+ 48
1680
+ 4
1681
+ 5
1682
+ 49
1683
+ 1
1684
+ 3
1685
+ 11
1686
+ I
1687
+ 5
1688
+ I
1689
+ 0
1690
+ I
1691
+ 0
1692
+ I
1693
+ 0
1694
+ n
1695
+ p
1696
+ 6
1697
+ x
1698
+ 18
1699
+ view_context_class
1700
+ x
1701
+ 3
1702
+ new
1703
+ x
1704
+ 8
1705
+ allocate
1706
+ x
1707
+ 14
1708
+ lookup_context
1709
+ x
1710
+ 12
1711
+ view_assigns
1712
+ x
1713
+ 10
1714
+ initialize
1715
+ p
1716
+ 5
1717
+ I
1718
+ -1
1719
+ I
1720
+ 56
1721
+ I
1722
+ 0
1723
+ I
1724
+ 57
1725
+ I
1726
+ 27
1727
+ x
1728
+ 84
1729
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
1730
+ p
1731
+ 0
1732
+ x
1733
+ 6
1734
+ render
1735
+ M
1736
+ 1
1737
+ n
1738
+ n
1739
+ x
1740
+ 6
1741
+ render
1742
+ i
1743
+ 35
1744
+ 95
1745
+ 19
1746
+ 1
1747
+ 15
1748
+ 5
1749
+ 5
1750
+ 20
1751
+ 0
1752
+ 36
1753
+ 20
1754
+ 1
1755
+ 13
1756
+ 70
1757
+ 10
1758
+ 22
1759
+ 44
1760
+ 43
1761
+ 0
1762
+ 12
1763
+ 49
1764
+ 1
1765
+ 1
1766
+ 47
1767
+ 51
1768
+ 2
1769
+ 0
1770
+ 13
1771
+ 18
1772
+ 2
1773
+ 47
1774
+ 49
1775
+ 3
1776
+ 1
1777
+ 15
1778
+ 11
1779
+ I
1780
+ 7
1781
+ I
1782
+ 2
1783
+ I
1784
+ 0
1785
+ I
1786
+ 0
1787
+ I
1788
+ 0
1789
+ p
1790
+ 4
1791
+ x
1792
+ 4
1793
+ Proc
1794
+ x
1795
+ 14
1796
+ __from_block__
1797
+ x
1798
+ 16
1799
+ render_to_string
1800
+ x
1801
+ 14
1802
+ response_body=
1803
+ p
1804
+ 7
1805
+ I
1806
+ -1
1807
+ I
1808
+ 5c
1809
+ I
1810
+ 4
1811
+ I
1812
+ aa
1813
+ I
1814
+ 5
1815
+ I
1816
+ 5d
1817
+ I
1818
+ 23
1819
+ x
1820
+ 84
1821
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
1822
+ p
1823
+ 2
1824
+ x
1825
+ 4
1826
+ args
1827
+ x
1828
+ 5
1829
+ block
1830
+ x
1831
+ 16
1832
+ render_to_string
1833
+ M
1834
+ 1
1835
+ n
1836
+ n
1837
+ x
1838
+ 16
1839
+ render_to_string
1840
+ i
1841
+ 44
1842
+ 95
1843
+ 19
1844
+ 1
1845
+ 15
1846
+ 5
1847
+ 20
1848
+ 0
1849
+ 36
1850
+ 20
1851
+ 1
1852
+ 13
1853
+ 70
1854
+ 10
1855
+ 21
1856
+ 44
1857
+ 43
1858
+ 0
1859
+ 12
1860
+ 49
1861
+ 1
1862
+ 1
1863
+ 47
1864
+ 51
1865
+ 2
1866
+ 0
1867
+ 19
1868
+ 2
1869
+ 15
1870
+ 5
1871
+ 20
1872
+ 2
1873
+ 47
1874
+ 49
1875
+ 3
1876
+ 1
1877
+ 15
1878
+ 5
1879
+ 20
1880
+ 2
1881
+ 47
1882
+ 49
1883
+ 4
1884
+ 1
1885
+ 11
1886
+ I
1887
+ 7
1888
+ I
1889
+ 3
1890
+ I
1891
+ 0
1892
+ I
1893
+ 0
1894
+ I
1895
+ 0
1896
+ p
1897
+ 5
1898
+ x
1899
+ 4
1900
+ Proc
1901
+ x
1902
+ 14
1903
+ __from_block__
1904
+ x
1905
+ 15
1906
+ _normalize_args
1907
+ x
1908
+ 18
1909
+ _normalize_options
1910
+ x
1911
+ 14
1912
+ render_to_body
1913
+ p
1914
+ 9
1915
+ I
1916
+ -1
1917
+ I
1918
+ 63
1919
+ I
1920
+ 4
1921
+ I
1922
+ 64
1923
+ I
1924
+ 1c
1925
+ I
1926
+ 65
1927
+ I
1928
+ 24
1929
+ I
1930
+ 66
1931
+ I
1932
+ 2c
1933
+ x
1934
+ 84
1935
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
1936
+ p
1937
+ 3
1938
+ x
1939
+ 4
1940
+ args
1941
+ x
1942
+ 5
1943
+ block
1944
+ x
1945
+ 7
1946
+ options
1947
+ x
1948
+ 14
1949
+ render_to_body
1950
+ M
1951
+ 1
1952
+ n
1953
+ n
1954
+ x
1955
+ 14
1956
+ render_to_body
1957
+ i
1958
+ 30
1959
+ 23
1960
+ 0
1961
+ 10
1962
+ 14
1963
+ 44
1964
+ 43
1965
+ 0
1966
+ 78
1967
+ 49
1968
+ 1
1969
+ 1
1970
+ 19
1971
+ 0
1972
+ 15
1973
+ 5
1974
+ 20
1975
+ 0
1976
+ 47
1977
+ 49
1978
+ 2
1979
+ 1
1980
+ 15
1981
+ 5
1982
+ 20
1983
+ 0
1984
+ 47
1985
+ 49
1986
+ 3
1987
+ 1
1988
+ 11
1989
+ I
1990
+ 3
1991
+ I
1992
+ 1
1993
+ I
1994
+ 0
1995
+ I
1996
+ 1
1997
+ n
1998
+ p
1999
+ 4
2000
+ x
2001
+ 4
2002
+ Hash
2003
+ x
2004
+ 16
2005
+ new_from_literal
2006
+ x
2007
+ 16
2008
+ _process_options
2009
+ x
2010
+ 16
2011
+ _render_template
2012
+ p
2013
+ 7
2014
+ I
2015
+ -1
2016
+ I
2017
+ 6b
2018
+ I
2019
+ e
2020
+ I
2021
+ 6c
2022
+ I
2023
+ 16
2024
+ I
2025
+ 6d
2026
+ I
2027
+ 1e
2028
+ x
2029
+ 84
2030
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
2031
+ p
2032
+ 1
2033
+ x
2034
+ 7
2035
+ options
2036
+ x
2037
+ 16
2038
+ _render_template
2039
+ M
2040
+ 1
2041
+ n
2042
+ n
2043
+ x
2044
+ 16
2045
+ _render_template
2046
+ i
2047
+ 9
2048
+ 5
2049
+ 48
2050
+ 0
2051
+ 20
2052
+ 0
2053
+ 49
2054
+ 1
2055
+ 1
2056
+ 11
2057
+ I
2058
+ 3
2059
+ I
2060
+ 1
2061
+ I
2062
+ 1
2063
+ I
2064
+ 1
2065
+ n
2066
+ p
2067
+ 2
2068
+ x
2069
+ 12
2070
+ view_context
2071
+ x
2072
+ 6
2073
+ render
2074
+ p
2075
+ 5
2076
+ I
2077
+ -1
2078
+ I
2079
+ 72
2080
+ I
2081
+ 0
2082
+ I
2083
+ 73
2084
+ I
2085
+ 9
2086
+ x
2087
+ 84
2088
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
2089
+ p
2090
+ 1
2091
+ x
2092
+ 7
2093
+ options
2094
+ x
2095
+ 7
2096
+ _prefix
2097
+ M
2098
+ 1
2099
+ n
2100
+ n
2101
+ x
2102
+ 7
2103
+ _prefix
2104
+ i
2105
+ 4
2106
+ 5
2107
+ 48
2108
+ 0
2109
+ 11
2110
+ I
2111
+ 1
2112
+ I
2113
+ 0
2114
+ I
2115
+ 0
2116
+ I
2117
+ 0
2118
+ n
2119
+ p
2120
+ 1
2121
+ x
2122
+ 15
2123
+ controller_path
2124
+ p
2125
+ 5
2126
+ I
2127
+ -1
2128
+ I
2129
+ 77
2130
+ I
2131
+ 0
2132
+ I
2133
+ 78
2134
+ I
2135
+ 4
2136
+ x
2137
+ 84
2138
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
2139
+ p
2140
+ 0
2141
+ x
2142
+ 7
2143
+ private
2144
+ x
2145
+ 12
2146
+ view_assigns
2147
+ M
2148
+ 1
2149
+ n
2150
+ n
2151
+ x
2152
+ 12
2153
+ view_assigns
2154
+ i
2155
+ 49
2156
+ 44
2157
+ 43
2158
+ 0
2159
+ 78
2160
+ 49
2161
+ 1
2162
+ 1
2163
+ 19
2164
+ 0
2165
+ 15
2166
+ 5
2167
+ 48
2168
+ 2
2169
+ 19
2170
+ 1
2171
+ 15
2172
+ 5
2173
+ 7
2174
+ 3
2175
+ 47
2176
+ 49
2177
+ 4
2178
+ 1
2179
+ 9
2180
+ 36
2181
+ 20
2182
+ 1
2183
+ 5
2184
+ 48
2185
+ 3
2186
+ 82
2187
+ 5
2188
+ 19
2189
+ 1
2190
+ 8
2191
+ 37
2192
+ 1
2193
+ 15
2194
+ 20
2195
+ 1
2196
+ 56
2197
+ 6
2198
+ 50
2199
+ 7
2200
+ 0
2201
+ 15
2202
+ 20
2203
+ 0
2204
+ 11
2205
+ I
2206
+ 4
2207
+ I
2208
+ 2
2209
+ I
2210
+ 0
2211
+ I
2212
+ 0
2213
+ n
2214
+ p
2215
+ 8
2216
+ x
2217
+ 4
2218
+ Hash
2219
+ x
2220
+ 16
2221
+ new_from_literal
2222
+ x
2223
+ 23
2224
+ instance_variable_names
2225
+ x
2226
+ 28
2227
+ protected_instance_variables
2228
+ x
2229
+ 11
2230
+ respond_to?
2231
+ x
2232
+ 1
2233
+ -
2234
+ M
2235
+ 1
2236
+ p
2237
+ 2
2238
+ x
2239
+ 9
2240
+ for_block
2241
+ t
2242
+ n
2243
+ x
2244
+ 12
2245
+ view_assigns
2246
+ i
2247
+ 38
2248
+ 57
2249
+ 19
2250
+ 0
2251
+ 15
2252
+ 21
2253
+ 1
2254
+ 0
2255
+ 20
2256
+ 0
2257
+ 49
2258
+ 0
2259
+ 0
2260
+ 44
2261
+ 43
2262
+ 1
2263
+ 79
2264
+ 77
2265
+ 49
2266
+ 2
2267
+ 2
2268
+ 49
2269
+ 3
2270
+ 1
2271
+ 5
2272
+ 20
2273
+ 0
2274
+ 47
2275
+ 49
2276
+ 4
2277
+ 1
2278
+ 13
2279
+ 18
2280
+ 3
2281
+ 49
2282
+ 5
2283
+ 2
2284
+ 15
2285
+ 11
2286
+ I
2287
+ 7
2288
+ I
2289
+ 1
2290
+ I
2291
+ 1
2292
+ I
2293
+ 1
2294
+ n
2295
+ p
2296
+ 6
2297
+ x
2298
+ 4
2299
+ to_s
2300
+ x
2301
+ 5
2302
+ Range
2303
+ x
2304
+ 3
2305
+ new
2306
+ x
2307
+ 2
2308
+ []
2309
+ x
2310
+ 21
2311
+ instance_variable_get
2312
+ x
2313
+ 3
2314
+ []=
2315
+ p
2316
+ 3
2317
+ I
2318
+ 0
2319
+ I
2320
+ 84
2321
+ I
2322
+ 26
2323
+ x
2324
+ 84
2325
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
2326
+ p
2327
+ 1
2328
+ x
2329
+ 4
2330
+ name
2331
+ x
2332
+ 4
2333
+ each
2334
+ p
2335
+ 13
2336
+ I
2337
+ -1
2338
+ I
2339
+ 80
2340
+ I
2341
+ 0
2342
+ I
2343
+ 81
2344
+ I
2345
+ a
2346
+ I
2347
+ 82
2348
+ I
2349
+ 10
2350
+ I
2351
+ 83
2352
+ I
2353
+ 26
2354
+ I
2355
+ 84
2356
+ I
2357
+ 2e
2358
+ I
2359
+ 85
2360
+ I
2361
+ 31
2362
+ x
2363
+ 84
2364
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
2365
+ p
2366
+ 2
2367
+ x
2368
+ 4
2369
+ hash
2370
+ x
2371
+ 9
2372
+ variables
2373
+ x
2374
+ 15
2375
+ _normalize_args
2376
+ M
2377
+ 1
2378
+ n
2379
+ n
2380
+ x
2381
+ 15
2382
+ _normalize_args
2383
+ i
2384
+ 153
2385
+ 23
2386
+ 0
2387
+ 10
2388
+ 8
2389
+ 1
2390
+ 19
2391
+ 0
2392
+ 15
2393
+ 23
2394
+ 1
2395
+ 10
2396
+ 22
2397
+ 44
2398
+ 43
2399
+ 0
2400
+ 78
2401
+ 49
2402
+ 1
2403
+ 1
2404
+ 19
2405
+ 1
2406
+ 15
2407
+ 20
2408
+ 0
2409
+ 13
2410
+ 45
2411
+ 2
2412
+ 3
2413
+ 12
2414
+ 49
2415
+ 4
2416
+ 1
2417
+ 9
2418
+ 38
2419
+ 15
2420
+ 1
2421
+ 8
2422
+ 149
2423
+ 13
2424
+ 45
2425
+ 0
2426
+ 5
2427
+ 12
2428
+ 49
2429
+ 4
2430
+ 1
2431
+ 9
2432
+ 63
2433
+ 15
2434
+ 20
2435
+ 0
2436
+ 1
2437
+ 17
2438
+ 2
2439
+ 19
2440
+ 1
2441
+ 15
2442
+ 19
2443
+ 0
2444
+ 15
2445
+ 2
2446
+ 8
2447
+ 149
2448
+ 13
2449
+ 45
2450
+ 6
2451
+ 7
2452
+ 12
2453
+ 49
2454
+ 4
2455
+ 1
2456
+ 10
2457
+ 85
2458
+ 13
2459
+ 45
2460
+ 8
2461
+ 9
2462
+ 12
2463
+ 49
2464
+ 4
2465
+ 1
2466
+ 10
2467
+ 85
2468
+ 8
2469
+ 127
2470
+ 15
2471
+ 20
2472
+ 0
2473
+ 49
2474
+ 10
2475
+ 0
2476
+ 19
2477
+ 0
2478
+ 15
2479
+ 20
2480
+ 0
2481
+ 4
2482
+ 47
2483
+ 49
2484
+ 11
2485
+ 1
2486
+ 9
2487
+ 107
2488
+ 7
2489
+ 12
2490
+ 8
2491
+ 109
2492
+ 7
2493
+ 13
2494
+ 19
2495
+ 2
2496
+ 15
2497
+ 20
2498
+ 1
2499
+ 20
2500
+ 2
2501
+ 20
2502
+ 0
2503
+ 13
2504
+ 18
2505
+ 3
2506
+ 49
2507
+ 14
2508
+ 2
2509
+ 15
2510
+ 8
2511
+ 149
2512
+ 15
2513
+ 20
2514
+ 1
2515
+ 44
2516
+ 43
2517
+ 0
2518
+ 79
2519
+ 49
2520
+ 1
2521
+ 1
2522
+ 13
2523
+ 7
2524
+ 15
2525
+ 20
2526
+ 0
2527
+ 49
2528
+ 14
2529
+ 2
2530
+ 15
2531
+ 49
2532
+ 16
2533
+ 1
2534
+ 15
2535
+ 20
2536
+ 1
2537
+ 11
2538
+ I
2539
+ 8
2540
+ I
2541
+ 3
2542
+ I
2543
+ 0
2544
+ I
2545
+ 2
2546
+ n
2547
+ p
2548
+ 17
2549
+ x
2550
+ 4
2551
+ Hash
2552
+ x
2553
+ 16
2554
+ new_from_literal
2555
+ x
2556
+ 8
2557
+ NilClass
2558
+ n
2559
+ x
2560
+ 3
2561
+ ===
2562
+ n
2563
+ x
2564
+ 6
2565
+ String
2566
+ n
2567
+ x
2568
+ 6
2569
+ Symbol
2570
+ n
2571
+ x
2572
+ 4
2573
+ to_s
2574
+ x
2575
+ 8
2576
+ include?
2577
+ x
2578
+ 4
2579
+ file
2580
+ x
2581
+ 6
2582
+ action
2583
+ x
2584
+ 3
2585
+ []=
2586
+ x
2587
+ 7
2588
+ partial
2589
+ x
2590
+ 6
2591
+ merge!
2592
+ p
2593
+ 25
2594
+ I
2595
+ -1
2596
+ I
2597
+ 8a
2598
+ I
2599
+ 16
2600
+ I
2601
+ 8b
2602
+ I
2603
+ 18
2604
+ I
2605
+ 8c
2606
+ I
2607
+ 23
2608
+ I
2609
+ 95
2610
+ I
2611
+ 26
2612
+ I
2613
+ 8d
2614
+ I
2615
+ 31
2616
+ I
2617
+ 8e
2618
+ I
2619
+ 3f
2620
+ I
2621
+ 8f
2622
+ I
2623
+ 56
2624
+ I
2625
+ 90
2626
+ I
2627
+ 5e
2628
+ I
2629
+ 91
2630
+ I
2631
+ 70
2632
+ I
2633
+ 92
2634
+ I
2635
+ 80
2636
+ I
2637
+ 94
2638
+ I
2639
+ 96
2640
+ I
2641
+ 97
2642
+ I
2643
+ 99
2644
+ x
2645
+ 84
2646
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
2647
+ p
2648
+ 3
2649
+ x
2650
+ 6
2651
+ action
2652
+ x
2653
+ 7
2654
+ options
2655
+ x
2656
+ 3
2657
+ key
2658
+ x
2659
+ 18
2660
+ _normalize_options
2661
+ M
2662
+ 1
2663
+ n
2664
+ n
2665
+ x
2666
+ 18
2667
+ _normalize_options
2668
+ i
2669
+ 131
2670
+ 20
2671
+ 0
2672
+ 7
2673
+ 0
2674
+ 49
2675
+ 1
2676
+ 1
2677
+ 2
2678
+ 83
2679
+ 2
2680
+ 9
2681
+ 28
2682
+ 20
2683
+ 0
2684
+ 7
2685
+ 0
2686
+ 5
2687
+ 48
2688
+ 3
2689
+ 13
2690
+ 18
2691
+ 3
2692
+ 49
2693
+ 4
2694
+ 2
2695
+ 15
2696
+ 8
2697
+ 29
2698
+ 1
2699
+ 15
2700
+ 20
2701
+ 0
2702
+ 49
2703
+ 5
2704
+ 0
2705
+ 7
2706
+ 0
2707
+ 7
2708
+ 6
2709
+ 7
2710
+ 7
2711
+ 35
2712
+ 3
2713
+ 49
2714
+ 8
2715
+ 1
2716
+ 49
2717
+ 9
2718
+ 0
2719
+ 9
2720
+ 82
2721
+ 20
2722
+ 0
2723
+ 7
2724
+ 10
2725
+ 14
2726
+ 2
2727
+ 49
2728
+ 1
2729
+ 1
2730
+ 13
2731
+ 10
2732
+ 76
2733
+ 15
2734
+ 5
2735
+ 48
2736
+ 11
2737
+ 13
2738
+ 18
2739
+ 3
2740
+ 49
2741
+ 4
2742
+ 2
2743
+ 15
2744
+ 8
2745
+ 80
2746
+ 18
2747
+ 2
2748
+ 16
2749
+ 2
2750
+ 8
2751
+ 83
2752
+ 1
2753
+ 15
2754
+ 20
2755
+ 0
2756
+ 7
2757
+ 7
2758
+ 14
2759
+ 2
2760
+ 49
2761
+ 1
2762
+ 1
2763
+ 13
2764
+ 10
2765
+ 123
2766
+ 15
2767
+ 20
2768
+ 0
2769
+ 7
2770
+ 12
2771
+ 49
2772
+ 1
2773
+ 1
2774
+ 13
2775
+ 10
2776
+ 111
2777
+ 15
2778
+ 5
2779
+ 48
2780
+ 3
2781
+ 49
2782
+ 13
2783
+ 0
2784
+ 13
2785
+ 18
2786
+ 3
2787
+ 49
2788
+ 4
2789
+ 2
2790
+ 15
2791
+ 8
2792
+ 127
2793
+ 18
2794
+ 2
2795
+ 16
2796
+ 2
2797
+ 15
2798
+ 20
2799
+ 0
2800
+ 11
2801
+ I
2802
+ 5
2803
+ I
2804
+ 1
2805
+ I
2806
+ 1
2807
+ I
2808
+ 1
2809
+ n
2810
+ p
2811
+ 14
2812
+ x
2813
+ 7
2814
+ partial
2815
+ x
2816
+ 2
2817
+ []
2818
+ x
2819
+ 2
2820
+ ==
2821
+ x
2822
+ 11
2823
+ action_name
2824
+ x
2825
+ 3
2826
+ []=
2827
+ x
2828
+ 4
2829
+ keys
2830
+ x
2831
+ 4
2832
+ file
2833
+ x
2834
+ 8
2835
+ template
2836
+ x
2837
+ 1
2838
+ &
2839
+ x
2840
+ 6
2841
+ empty?
2842
+ x
2843
+ 6
2844
+ prefix
2845
+ x
2846
+ 7
2847
+ _prefix
2848
+ x
2849
+ 6
2850
+ action
2851
+ x
2852
+ 4
2853
+ to_s
2854
+ p
2855
+ 19
2856
+ I
2857
+ -1
2858
+ I
2859
+ 9a
2860
+ I
2861
+ 0
2862
+ I
2863
+ 9b
2864
+ I
2865
+ c
2866
+ I
2867
+ 9c
2868
+ I
2869
+ 1c
2870
+ I
2871
+ 9b
2872
+ I
2873
+ 1e
2874
+ I
2875
+ 9f
2876
+ I
2877
+ 33
2878
+ I
2879
+ a0
2880
+ I
2881
+ 52
2882
+ I
2883
+ 9f
2884
+ I
2885
+ 54
2886
+ I
2887
+ a3
2888
+ I
2889
+ 80
2890
+ I
2891
+ a4
2892
+ I
2893
+ 83
2894
+ x
2895
+ 84
2896
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
2897
+ p
2898
+ 1
2899
+ x
2900
+ 7
2901
+ options
2902
+ x
2903
+ 16
2904
+ _process_options
2905
+ M
2906
+ 1
2907
+ n
2908
+ n
2909
+ x
2910
+ 16
2911
+ _process_options
2912
+ i
2913
+ 2
2914
+ 1
2915
+ 11
2916
+ I
2917
+ 2
2918
+ I
2919
+ 1
2920
+ I
2921
+ 1
2922
+ I
2923
+ 1
2924
+ n
2925
+ p
2926
+ 0
2927
+ p
2928
+ 5
2929
+ I
2930
+ -1
2931
+ I
2932
+ a7
2933
+ I
2934
+ 0
2935
+ I
2936
+ a8
2937
+ I
2938
+ 2
2939
+ x
2940
+ 84
2941
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
2942
+ p
2943
+ 1
2944
+ x
2945
+ 7
2946
+ options
2947
+ p
2948
+ 37
2949
+ I
2950
+ 2
2951
+ I
2952
+ 22
2953
+ I
2954
+ d
2955
+ I
2956
+ 24
2957
+ I
2958
+ 18
2959
+ I
2960
+ 27
2961
+ I
2962
+ 26
2963
+ I
2964
+ 2e
2965
+ I
2966
+ 40
2967
+ I
2968
+ 42
2969
+ I
2970
+ 48
2971
+ I
2972
+ 44
2973
+ I
2974
+ 56
2975
+ I
2976
+ 48
2977
+ I
2978
+ 64
2979
+ I
2980
+ 56
2981
+ I
2982
+ 72
2983
+ I
2984
+ 5c
2985
+ I
2986
+ 80
2987
+ I
2988
+ 63
2989
+ I
2990
+ 8e
2991
+ I
2992
+ 6b
2993
+ I
2994
+ 9c
2995
+ I
2996
+ 72
2997
+ I
2998
+ aa
2999
+ I
3000
+ 77
3001
+ I
3002
+ b8
3003
+ I
3004
+ 7b
3005
+ I
3006
+ bc
3007
+ I
3008
+ 80
3009
+ I
3010
+ ca
3011
+ I
3012
+ 8a
3013
+ I
3014
+ d8
3015
+ I
3016
+ 9a
3017
+ I
3018
+ e6
3019
+ I
3020
+ a7
3021
+ I
3022
+ f4
3023
+ x
3024
+ 84
3025
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
3026
+ p
3027
+ 0
3028
+ p
3029
+ 7
3030
+ I
3031
+ 2
3032
+ I
3033
+ 5
3034
+ I
3035
+ 1f
3036
+ I
3037
+ 10
3038
+ I
3039
+ 3e
3040
+ I
3041
+ 21
3042
+ I
3043
+ 58
3044
+ x
3045
+ 84
3046
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
3047
+ p
3048
+ 0
3049
+ x
3050
+ 13
3051
+ attach_method
3052
+ p
3053
+ 7
3054
+ I
3055
+ 0
3056
+ I
3057
+ 1
3058
+ I
3059
+ 9
3060
+ I
3061
+ 2
3062
+ I
3063
+ 12
3064
+ I
3065
+ 4
3066
+ I
3067
+ 2e
3068
+ x
3069
+ 84
3070
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/abstract_controller/rendering.rb
3071
+ p
3072
+ 0