activesupport 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 activesupport might be problematic. Click here for more details.

Files changed (186) hide show
  1. data/CHANGELOG +5 -0
  2. data/lib/active_support.rbc +1184 -0
  3. data/lib/active_support/all.rbc +85 -0
  4. data/lib/active_support/base64.rbc +578 -0
  5. data/lib/active_support/basic_object.rbc +536 -0
  6. data/lib/active_support/benchmarkable.rbc +885 -0
  7. data/lib/active_support/buffered_logger.rbc +2367 -0
  8. data/lib/active_support/cache.rbc +8453 -0
  9. data/lib/active_support/cache/file_store.rbc +4077 -0
  10. data/lib/active_support/cache/strategy/local_cache.rbc +2930 -0
  11. data/lib/active_support/callbacks.rbc +7817 -0
  12. data/lib/active_support/concern.rbc +729 -0
  13. data/lib/active_support/configurable.rbc +985 -0
  14. data/lib/active_support/core_ext.rbc +191 -0
  15. data/lib/active_support/core_ext/array.rbc +149 -0
  16. data/lib/active_support/core_ext/array/access.rbc +627 -0
  17. data/lib/active_support/core_ext/array/conversions.rbc +1922 -0
  18. data/lib/active_support/core_ext/array/extract_options.rbc +378 -0
  19. data/lib/active_support/core_ext/array/grouping.rbc +1121 -0
  20. data/lib/active_support/core_ext/array/random_access.rbc +745 -0
  21. data/lib/active_support/core_ext/array/uniq_by.rbc +444 -0
  22. data/lib/active_support/core_ext/array/wrap.rbc +226 -0
  23. data/lib/active_support/core_ext/benchmark.rbc +261 -0
  24. data/lib/active_support/core_ext/big_decimal.rbc +53 -0
  25. data/lib/active_support/core_ext/big_decimal/conversions.rbc +681 -0
  26. data/lib/active_support/core_ext/cgi.rbc +53 -0
  27. data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rbc +666 -0
  28. data/lib/active_support/core_ext/class.rbc +117 -0
  29. data/lib/active_support/core_ext/class/attribute.rbc +566 -0
  30. data/lib/active_support/core_ext/class/attribute_accessors.rbc +940 -0
  31. data/lib/active_support/core_ext/class/delegating_attributes.rbc +1266 -0
  32. data/lib/active_support/core_ext/class/inheritable_attributes.rbc +3573 -0
  33. data/lib/active_support/core_ext/class/subclasses.rbc +1140 -0
  34. data/lib/active_support/core_ext/date/acts_like.rbc +193 -0
  35. data/lib/active_support/core_ext/date/calculations.rbc +4918 -0
  36. data/lib/active_support/core_ext/date/conversions.rbc +1178 -0
  37. data/lib/active_support/core_ext/date/freeze.rbc +545 -0
  38. data/lib/active_support/core_ext/date/zones.rbc +268 -0
  39. data/lib/active_support/core_ext/date_time/acts_like.rbc +253 -0
  40. data/lib/active_support/core_ext/date_time/calculations.rbc +2133 -0
  41. data/lib/active_support/core_ext/date_time/conversions.rbc +1548 -0
  42. data/lib/active_support/core_ext/date_time/zones.rbc +328 -0
  43. data/lib/active_support/core_ext/enumerable.rbc +1472 -0
  44. data/lib/active_support/core_ext/exception.rbc +160 -0
  45. data/lib/active_support/core_ext/file.rbc +69 -0
  46. data/lib/active_support/core_ext/file/atomic.rbc +730 -0
  47. data/lib/active_support/core_ext/file/path.rbc +161 -0
  48. data/lib/active_support/core_ext/float.rbc +53 -0
  49. data/lib/active_support/core_ext/float/rounding.rbc +284 -0
  50. data/lib/active_support/core_ext/hash.rbc +165 -0
  51. data/lib/active_support/core_ext/hash/conversions.rb +1 -1
  52. data/lib/active_support/core_ext/hash/conversions.rbc +2470 -0
  53. data/lib/active_support/core_ext/hash/deep_merge.rbc +409 -0
  54. data/lib/active_support/core_ext/hash/diff.rbc +344 -0
  55. data/lib/active_support/core_ext/hash/except.rbc +328 -0
  56. data/lib/active_support/core_ext/hash/indifferent_access.rbc +211 -0
  57. data/lib/active_support/core_ext/hash/keys.rbc +822 -0
  58. data/lib/active_support/core_ext/hash/reverse_merge.rbc +343 -0
  59. data/lib/active_support/core_ext/hash/slice.rbc +816 -0
  60. data/lib/active_support/core_ext/integer.rbc +85 -0
  61. data/lib/active_support/core_ext/integer/inflections.rbc +211 -0
  62. data/lib/active_support/core_ext/integer/multiple.rbc +214 -0
  63. data/lib/active_support/core_ext/integer/time.rbc +439 -0
  64. data/lib/active_support/core_ext/kernel.rbc +117 -0
  65. data/lib/active_support/core_ext/kernel/agnostics.rbc +304 -0
  66. data/lib/active_support/core_ext/kernel/debugger.rbc +489 -0
  67. data/lib/active_support/core_ext/kernel/reporting.rbc +1056 -0
  68. data/lib/active_support/core_ext/kernel/requires.rbc +461 -0
  69. data/lib/active_support/core_ext/kernel/singleton_class.rbc +309 -0
  70. data/lib/active_support/core_ext/load_error.rbc +575 -0
  71. data/lib/active_support/core_ext/logger.rbc +1654 -0
  72. data/lib/active_support/core_ext/module.rbc +229 -0
  73. data/lib/active_support/core_ext/module/aliasing.rbc +642 -0
  74. data/lib/active_support/core_ext/module/anonymous.rbc +204 -0
  75. data/lib/active_support/core_ext/module/attr_accessor_with_default.rbc +401 -0
  76. data/lib/active_support/core_ext/module/attr_internal.rbc +796 -0
  77. data/lib/active_support/core_ext/module/attribute_accessors.rbc +849 -0
  78. data/lib/active_support/core_ext/module/delegation.rbc +850 -0
  79. data/lib/active_support/core_ext/module/deprecation.rbc +219 -0
  80. data/lib/active_support/core_ext/module/introspection.rbc +1215 -0
  81. data/lib/active_support/core_ext/module/method_names.rbc +387 -0
  82. data/lib/active_support/core_ext/module/reachable.rbc +300 -0
  83. data/lib/active_support/core_ext/module/remove_method.rbc +350 -0
  84. data/lib/active_support/core_ext/module/synchronization.rbc +644 -0
  85. data/lib/active_support/core_ext/name_error.rbc +422 -0
  86. data/lib/active_support/core_ext/numeric.rbc +69 -0
  87. data/lib/active_support/core_ext/numeric/bytes.rbc +873 -0
  88. data/lib/active_support/core_ext/numeric/time.rbc +1299 -0
  89. data/lib/active_support/core_ext/object.rbc +213 -0
  90. data/lib/active_support/core_ext/object/acts_like.rbc +211 -0
  91. data/lib/active_support/core_ext/object/blank.rbc +1219 -0
  92. data/lib/active_support/core_ext/object/conversions.rbc +101 -0
  93. data/lib/active_support/core_ext/object/duplicable.rbc +1091 -0
  94. data/lib/active_support/core_ext/object/instance_variables.rbc +746 -0
  95. data/lib/active_support/core_ext/object/returning.rbc +222 -0
  96. data/lib/active_support/core_ext/object/to_json.rbc +259 -0
  97. data/lib/active_support/core_ext/object/to_param.rbc +1057 -0
  98. data/lib/active_support/core_ext/object/to_query.rbc +771 -0
  99. data/lib/active_support/core_ext/object/try.rbc +389 -0
  100. data/lib/active_support/core_ext/object/with_options.rbc +245 -0
  101. data/lib/active_support/core_ext/proc.rbc +416 -0
  102. data/lib/active_support/core_ext/process.rbc +53 -0
  103. data/lib/active_support/core_ext/process/daemon.rbc +466 -0
  104. data/lib/active_support/core_ext/range.rbc +101 -0
  105. data/lib/active_support/core_ext/range/blockless_step.rbc +551 -0
  106. data/lib/active_support/core_ext/range/conversions.rbc +447 -0
  107. data/lib/active_support/core_ext/range/include_range.rbc +340 -0
  108. data/lib/active_support/core_ext/range/overlaps.rbc +204 -0
  109. data/lib/active_support/core_ext/regexp.rbc +201 -0
  110. data/lib/active_support/core_ext/rexml.rbc +953 -0
  111. data/lib/active_support/core_ext/string.rbc +245 -0
  112. data/lib/active_support/core_ext/string/access.rbc +1254 -0
  113. data/lib/active_support/core_ext/string/behavior.rbc +174 -0
  114. data/lib/active_support/core_ext/string/conversions.rbc +964 -0
  115. data/lib/active_support/core_ext/string/encoding.rbc +295 -0
  116. data/lib/active_support/core_ext/string/exclude.rbc +192 -0
  117. data/lib/active_support/core_ext/string/filters.rbc +640 -0
  118. data/lib/active_support/core_ext/string/inflections.rbc +1320 -0
  119. data/lib/active_support/core_ext/string/interpolation.rbc +69 -0
  120. data/lib/active_support/core_ext/string/multibyte.rbc +690 -0
  121. data/lib/active_support/core_ext/string/output_safety.rbc +2035 -0
  122. data/lib/active_support/core_ext/string/starts_ends_with.rbc +151 -0
  123. data/lib/active_support/core_ext/string/strip.rbc +301 -0
  124. data/lib/active_support/core_ext/string/xchar.rbc +294 -0
  125. data/lib/active_support/core_ext/time/acts_like.rbc +193 -0
  126. data/lib/active_support/core_ext/time/calculations.rbc +5893 -0
  127. data/lib/active_support/core_ext/time/conversions.rbc +1193 -0
  128. data/lib/active_support/core_ext/time/marshal.rbc +1245 -0
  129. data/lib/active_support/core_ext/time/publicize_conversion_methods.rbc +259 -0
  130. data/lib/active_support/core_ext/time/zones.rbc +1061 -0
  131. data/lib/active_support/core_ext/uri.rbc +516 -0
  132. data/lib/active_support/dependencies.rbc +12236 -0
  133. data/lib/active_support/dependencies/autoload.rbc +1153 -0
  134. data/lib/active_support/deprecation.rbc +411 -0
  135. data/lib/active_support/deprecation/behaviors.rbc +1200 -0
  136. data/lib/active_support/deprecation/method_wrappers.rbc +628 -0
  137. data/lib/active_support/deprecation/proxy_wrappers.rbc +1925 -0
  138. data/lib/active_support/deprecation/reporting.rbc +1516 -0
  139. data/lib/active_support/descendants_tracker.rbc +1060 -0
  140. data/lib/active_support/duration.rbc +2432 -0
  141. data/lib/active_support/file_update_checker.rbc +595 -0
  142. data/lib/active_support/hash_with_indifferent_access.rbc +2560 -0
  143. data/lib/active_support/i18n.rbc +262 -0
  144. data/lib/active_support/i18n_railtie.rbc +1869 -0
  145. data/lib/active_support/inflections.rbc +2076 -0
  146. data/lib/active_support/inflector.rbc +117 -0
  147. data/lib/active_support/inflector/inflections.rbc +3699 -0
  148. data/lib/active_support/inflector/methods.rbc +1881 -0
  149. data/lib/active_support/inflector/transliterate.rbc +684 -0
  150. data/lib/active_support/json.rbc +69 -0
  151. data/lib/active_support/json/decoding.rbc +1045 -0
  152. data/lib/active_support/json/encoding.rbc +7108 -0
  153. data/lib/active_support/json/variable.rbc +392 -0
  154. data/lib/active_support/lazy_load_hooks.rbc +703 -0
  155. data/lib/active_support/log_subscriber.rbc +2081 -0
  156. data/lib/active_support/memoizable.rbc +2164 -0
  157. data/lib/active_support/multibyte.rbc +562 -0
  158. data/lib/active_support/multibyte/utils.rbc +1062 -0
  159. data/lib/active_support/notifications.rbc +1241 -0
  160. data/lib/active_support/notifications/fanout.rbc +1632 -0
  161. data/lib/active_support/notifications/instrumenter.rbc +1207 -0
  162. data/lib/active_support/option_merger.rbc +721 -0
  163. data/lib/active_support/ordered_hash.rbc +3808 -0
  164. data/lib/active_support/ordered_options.rbc +750 -0
  165. data/lib/active_support/railtie.rbc +1051 -0
  166. data/lib/active_support/rescuable.rbc +1389 -0
  167. data/lib/active_support/ruby/shim.rbc +229 -0
  168. data/lib/active_support/secure_random.rbc +0 -0
  169. data/lib/active_support/string_inquirer.rbc +332 -0
  170. data/lib/active_support/test_case.rbc +1002 -0
  171. data/lib/active_support/testing/assertions.rbc +1063 -0
  172. data/lib/active_support/testing/declarative.rbc +904 -0
  173. data/lib/active_support/testing/default.rbc +319 -0
  174. data/lib/active_support/testing/deprecation.rbc +1562 -0
  175. data/lib/active_support/testing/isolation.rbc +4048 -0
  176. data/lib/active_support/testing/pending.rbc +961 -0
  177. data/lib/active_support/testing/setup_and_teardown.rbc +2684 -0
  178. data/lib/active_support/time.rbc +574 -0
  179. data/lib/active_support/time_with_zone.rbc +5988 -0
  180. data/lib/active_support/values/time_zone.rbc +6915 -0
  181. data/lib/active_support/version.rb +2 -2
  182. data/lib/active_support/version.rbc +295 -0
  183. data/lib/active_support/whiny_nil.rbc +826 -0
  184. data/lib/active_support/xml_mini.rbc +4291 -0
  185. data/lib/active_support/xml_mini/rexml.rbc +1744 -0
  186. metadata +196 -10
@@ -0,0 +1,850 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 38
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 1
26
+ 65
27
+ 49
28
+ 3
29
+ 3
30
+ 13
31
+ 99
32
+ 12
33
+ 7
34
+ 4
35
+ 12
36
+ 7
37
+ 5
38
+ 12
39
+ 65
40
+ 12
41
+ 49
42
+ 6
43
+ 4
44
+ 15
45
+ 49
46
+ 4
47
+ 0
48
+ 15
49
+ 2
50
+ 11
51
+ I
52
+ 6
53
+ I
54
+ 0
55
+ I
56
+ 0
57
+ I
58
+ 0
59
+ n
60
+ p
61
+ 7
62
+ s
63
+ 44
64
+ active_support/core_ext/module/remove_method
65
+ x
66
+ 7
67
+ require
68
+ x
69
+ 6
70
+ Module
71
+ x
72
+ 10
73
+ open_class
74
+ x
75
+ 14
76
+ __class_init__
77
+ M
78
+ 1
79
+ n
80
+ n
81
+ x
82
+ 6
83
+ Module
84
+ i
85
+ 16
86
+ 5
87
+ 66
88
+ 99
89
+ 7
90
+ 0
91
+ 7
92
+ 1
93
+ 65
94
+ 67
95
+ 49
96
+ 2
97
+ 0
98
+ 49
99
+ 3
100
+ 4
101
+ 11
102
+ I
103
+ 5
104
+ I
105
+ 0
106
+ I
107
+ 0
108
+ I
109
+ 0
110
+ n
111
+ p
112
+ 4
113
+ x
114
+ 8
115
+ delegate
116
+ M
117
+ 1
118
+ n
119
+ n
120
+ x
121
+ 8
122
+ delegate
123
+ i
124
+ 200
125
+ 20
126
+ 0
127
+ 49
128
+ 0
129
+ 0
130
+ 19
131
+ 1
132
+ 15
133
+ 20
134
+ 1
135
+ 45
136
+ 1
137
+ 2
138
+ 49
139
+ 3
140
+ 1
141
+ 13
142
+ 9
143
+ 29
144
+ 15
145
+ 20
146
+ 1
147
+ 7
148
+ 4
149
+ 49
150
+ 5
151
+ 1
152
+ 19
153
+ 2
154
+ 9
155
+ 34
156
+ 1
157
+ 8
158
+ 45
159
+ 5
160
+ 45
161
+ 6
162
+ 7
163
+ 7
164
+ 8
165
+ 64
166
+ 47
167
+ 49
168
+ 9
169
+ 2
170
+ 15
171
+ 20
172
+ 1
173
+ 7
174
+ 10
175
+ 49
176
+ 5
177
+ 1
178
+ 2
179
+ 83
180
+ 11
181
+ 13
182
+ 9
183
+ 91
184
+ 15
185
+ 20
186
+ 1
187
+ 7
188
+ 4
189
+ 49
190
+ 5
191
+ 1
192
+ 49
193
+ 12
194
+ 0
195
+ 7
196
+ 13
197
+ 13
198
+ 70
199
+ 9
200
+ 88
201
+ 15
202
+ 44
203
+ 43
204
+ 14
205
+ 7
206
+ 15
207
+ 78
208
+ 49
209
+ 16
210
+ 2
211
+ 6
212
+ 13
213
+ 49
214
+ 17
215
+ 1
216
+ 9
217
+ 106
218
+ 5
219
+ 45
220
+ 6
221
+ 18
222
+ 7
223
+ 19
224
+ 64
225
+ 47
226
+ 49
227
+ 9
228
+ 2
229
+ 8
230
+ 107
231
+ 1
232
+ 15
233
+ 20
234
+ 1
235
+ 7
236
+ 10
237
+ 49
238
+ 5
239
+ 1
240
+ 13
241
+ 9
242
+ 149
243
+ 15
244
+ 20
245
+ 1
246
+ 7
247
+ 10
248
+ 49
249
+ 5
250
+ 1
251
+ 2
252
+ 83
253
+ 11
254
+ 9
255
+ 135
256
+ 20
257
+ 2
258
+ 8
259
+ 142
260
+ 20
261
+ 1
262
+ 7
263
+ 10
264
+ 49
265
+ 5
266
+ 1
267
+ 47
268
+ 101
269
+ 12
270
+ 7
271
+ 20
272
+ 63
273
+ 2
274
+ 13
275
+ 10
276
+ 156
277
+ 15
278
+ 7
279
+ 21
280
+ 64
281
+ 19
282
+ 3
283
+ 15
284
+ 5
285
+ 48
286
+ 22
287
+ 49
288
+ 23
289
+ 0
290
+ 7
291
+ 24
292
+ 64
293
+ 80
294
+ 49
295
+ 25
296
+ 2
297
+ 97
298
+ 37
299
+ 19
300
+ 4
301
+ 15
302
+ 37
303
+ 19
304
+ 5
305
+ 15
306
+ 15
307
+ 2
308
+ 15
309
+ 20
310
+ 5
311
+ 49
312
+ 26
313
+ 0
314
+ 19
315
+ 5
316
+ 15
317
+ 20
318
+ 0
319
+ 56
320
+ 27
321
+ 50
322
+ 28
323
+ 0
324
+ 11
325
+ I
326
+ a
327
+ I
328
+ 6
329
+ I
330
+ 0
331
+ I
332
+ 0
333
+ I
334
+ 0
335
+ p
336
+ 29
337
+ x
338
+ 3
339
+ pop
340
+ x
341
+ 4
342
+ Hash
343
+ n
344
+ x
345
+ 5
346
+ is_a?
347
+ x
348
+ 2
349
+ to
350
+ x
351
+ 2
352
+ []
353
+ x
354
+ 13
355
+ ArgumentError
356
+ n
357
+ s
358
+ 126
359
+ Delegation needs a target. Supply an options hash with a :to key as the last argument (e.g. delegate :hello, :to => :greeter).
360
+ x
361
+ 5
362
+ raise
363
+ x
364
+ 6
365
+ prefix
366
+ x
367
+ 2
368
+ ==
369
+ x
370
+ 4
371
+ to_s
372
+ n
373
+ x
374
+ 6
375
+ Regexp
376
+ s
377
+ 8
378
+ ^[^a-z_]
379
+ x
380
+ 3
381
+ new
382
+ x
383
+ 2
384
+ =~
385
+ n
386
+ s
387
+ 77
388
+ Can only automatically set the delegation prefix when delegating to a method.
389
+ s
390
+ 1
391
+ _
392
+ s
393
+ 0
394
+
395
+ x
396
+ 6
397
+ caller
398
+ x
399
+ 5
400
+ first
401
+ s
402
+ 1
403
+ :
404
+ x
405
+ 5
406
+ split
407
+ x
408
+ 4
409
+ to_i
410
+ M
411
+ 1
412
+ p
413
+ 2
414
+ x
415
+ 9
416
+ for_block
417
+ t
418
+ n
419
+ x
420
+ 8
421
+ delegate
422
+ i
423
+ 160
424
+ 57
425
+ 19
426
+ 0
427
+ 15
428
+ 21
429
+ 1
430
+ 1
431
+ 7
432
+ 0
433
+ 49
434
+ 1
435
+ 1
436
+ 9
437
+ 19
438
+ 7
439
+ 2
440
+ 64
441
+ 8
442
+ 65
443
+ 7
444
+ 3
445
+ 5
446
+ 47
447
+ 101
448
+ 4
449
+ 7
450
+ 5
451
+ 21
452
+ 1
453
+ 3
454
+ 47
455
+ 101
456
+ 4
457
+ 20
458
+ 0
459
+ 47
460
+ 101
461
+ 4
462
+ 7
463
+ 6
464
+ 21
465
+ 1
466
+ 2
467
+ 47
468
+ 101
469
+ 4
470
+ 7
471
+ 7
472
+ 20
473
+ 0
474
+ 47
475
+ 101
476
+ 4
477
+ 7
478
+ 8
479
+ 21
480
+ 1
481
+ 2
482
+ 47
483
+ 101
484
+ 4
485
+ 7
486
+ 9
487
+ 63
488
+ 12
489
+ 19
490
+ 1
491
+ 15
492
+ 5
493
+ 7
494
+ 10
495
+ 21
496
+ 1
497
+ 3
498
+ 47
499
+ 101
500
+ 4
501
+ 20
502
+ 0
503
+ 47
504
+ 101
505
+ 4
506
+ 7
507
+ 11
508
+ 21
509
+ 1
510
+ 3
511
+ 47
512
+ 101
513
+ 4
514
+ 20
515
+ 0
516
+ 47
517
+ 101
518
+ 4
519
+ 7
520
+ 12
521
+ 21
522
+ 1
523
+ 3
524
+ 47
525
+ 101
526
+ 4
527
+ 20
528
+ 0
529
+ 47
530
+ 101
531
+ 4
532
+ 7
533
+ 13
534
+ 21
535
+ 1
536
+ 2
537
+ 47
538
+ 101
539
+ 4
540
+ 7
541
+ 14
542
+ 20
543
+ 0
544
+ 49
545
+ 15
546
+ 0
547
+ 47
548
+ 101
549
+ 4
550
+ 7
551
+ 16
552
+ 21
553
+ 1
554
+ 2
555
+ 47
556
+ 101
557
+ 4
558
+ 7
559
+ 17
560
+ 20
561
+ 1
562
+ 47
563
+ 101
564
+ 4
565
+ 7
566
+ 18
567
+ 63
568
+ 18
569
+ 21
570
+ 1
571
+ 4
572
+ 21
573
+ 1
574
+ 5
575
+ 4
576
+ 5
577
+ 82
578
+ 19
579
+ 47
580
+ 49
581
+ 20
582
+ 3
583
+ 11
584
+ I
585
+ 16
586
+ I
587
+ 2
588
+ I
589
+ 1
590
+ I
591
+ 1
592
+ n
593
+ p
594
+ 21
595
+ x
596
+ 9
597
+ allow_nil
598
+ x
599
+ 2
600
+ []
601
+ s
602
+ 6
603
+ return
604
+ s
605
+ 7
606
+ raise "
607
+ x
608
+ 4
609
+ to_s
610
+ s
611
+ 1
612
+ #
613
+ s
614
+ 14
615
+ delegated to
616
+ s
617
+ 1
618
+ .
619
+ s
620
+ 6
621
+ , but
622
+ s
623
+ 25
624
+ is nil: #{self.inspect}"
625
+ s
626
+ 57
627
+ if instance_methods(false).map(&:to_s).include?("
628
+ s
629
+ 37
630
+ ")
631
+ remove_possible_method("
632
+ s
633
+ 28
634
+ ")
635
+ end
636
+
637
+ def
638
+ s
639
+ 75
640
+ (*args, &block) # def customer_name(*args, &block)
641
+
642
+ s
643
+ 10
644
+ .__send__(
645
+ x
646
+ 7
647
+ inspect
648
+ s
649
+ 156
650
+ , *args, &block) # client.__send__(:name, *args, &block)
651
+ rescue NoMethodError # rescue NoMethodError
652
+ if
653
+ s
654
+ 73
655
+ .nil? # if client.nil?
656
+
657
+ s
658
+ 351
659
+ # return # depends on :allow_nil
660
+ else # else
661
+ raise # raise
662
+ end # end
663
+ end # end
664
+
665
+ x
666
+ 1
667
+ -
668
+ x
669
+ 11
670
+ module_eval
671
+ p
672
+ 27
673
+ I
674
+ 0
675
+ I
676
+ 79
677
+ I
678
+ 4
679
+ I
680
+ 7b
681
+ I
682
+ e
683
+ I
684
+ 7c
685
+ I
686
+ 13
687
+ I
688
+ 7e
689
+ I
690
+ 41
691
+ I
692
+ 7a
693
+ I
694
+ 44
695
+ I
696
+ 81
697
+ I
698
+ 45
699
+ I
700
+ 82
701
+ I
702
+ 54
703
+ I
704
+ 83
705
+ I
706
+ 61
707
+ I
708
+ 86
709
+ I
710
+ 6e
711
+ I
712
+ 87
713
+ I
714
+ 80
715
+ I
716
+ 89
717
+ I
718
+ 88
719
+ I
720
+ 8a
721
+ I
722
+ 91
723
+ I
724
+ 81
725
+ I
726
+ a0
727
+ x
728
+ 99
729
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
730
+ p
731
+ 2
732
+ x
733
+ 6
734
+ method
735
+ x
736
+ 6
737
+ on_nil
738
+ x
739
+ 4
740
+ each
741
+ p
742
+ 23
743
+ I
744
+ -1
745
+ I
746
+ 6a
747
+ I
748
+ 0
749
+ I
750
+ 6b
751
+ I
752
+ 8
753
+ I
754
+ 6c
755
+ I
756
+ 22
757
+ I
758
+ 6d
759
+ I
760
+ 2e
761
+ I
762
+ 70
763
+ I
764
+ 5d
765
+ I
766
+ 71
767
+ I
768
+ 6a
769
+ I
770
+ 70
771
+ I
772
+ 6c
773
+ I
774
+ 74
775
+ I
776
+ 9f
777
+ I
778
+ 76
779
+ I
780
+ b8
781
+ I
782
+ 77
783
+ I
784
+ c0
785
+ I
786
+ 79
787
+ I
788
+ c8
789
+ x
790
+ 99
791
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
792
+ p
793
+ 6
794
+ x
795
+ 7
796
+ methods
797
+ x
798
+ 7
799
+ options
800
+ x
801
+ 2
802
+ to
803
+ x
804
+ 6
805
+ prefix
806
+ x
807
+ 4
808
+ file
809
+ x
810
+ 4
811
+ line
812
+ x
813
+ 17
814
+ method_visibility
815
+ x
816
+ 15
817
+ add_defn_method
818
+ p
819
+ 3
820
+ I
821
+ 2
822
+ I
823
+ 6a
824
+ I
825
+ 10
826
+ x
827
+ 99
828
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
829
+ p
830
+ 0
831
+ x
832
+ 13
833
+ attach_method
834
+ p
835
+ 5
836
+ I
837
+ 0
838
+ I
839
+ 1
840
+ I
841
+ 9
842
+ I
843
+ 3
844
+ I
845
+ 26
846
+ x
847
+ 99
848
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/delegation.rb
849
+ p
850
+ 0