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,684 @@
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
+ 40
72
+ active_support/core_ext/string/multibyte
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 19
78
+ active_support/i18n
79
+ x
80
+ 13
81
+ ActiveSupport
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
+ 13
94
+ ActiveSupport
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
+ 9
138
+ Inflector
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
+ 9
151
+ Inflector
152
+ i
153
+ 30
154
+ 5
155
+ 66
156
+ 99
157
+ 7
158
+ 0
159
+ 7
160
+ 1
161
+ 65
162
+ 67
163
+ 49
164
+ 2
165
+ 0
166
+ 49
167
+ 3
168
+ 4
169
+ 15
170
+ 99
171
+ 7
172
+ 4
173
+ 7
174
+ 5
175
+ 65
176
+ 67
177
+ 49
178
+ 2
179
+ 0
180
+ 49
181
+ 3
182
+ 4
183
+ 11
184
+ I
185
+ 5
186
+ I
187
+ 0
188
+ I
189
+ 0
190
+ I
191
+ 0
192
+ n
193
+ p
194
+ 6
195
+ x
196
+ 13
197
+ transliterate
198
+ M
199
+ 1
200
+ n
201
+ n
202
+ x
203
+ 13
204
+ transliterate
205
+ i
206
+ 57
207
+ 23
208
+ 1
209
+ 10
210
+ 10
211
+ 7
212
+ 0
213
+ 64
214
+ 19
215
+ 1
216
+ 15
217
+ 45
218
+ 1
219
+ 2
220
+ 45
221
+ 3
222
+ 4
223
+ 43
224
+ 5
225
+ 43
226
+ 6
227
+ 45
228
+ 3
229
+ 7
230
+ 43
231
+ 5
232
+ 43
233
+ 6
234
+ 20
235
+ 0
236
+ 49
237
+ 8
238
+ 1
239
+ 7
240
+ 9
241
+ 49
242
+ 10
243
+ 2
244
+ 44
245
+ 43
246
+ 11
247
+ 79
248
+ 49
249
+ 12
250
+ 1
251
+ 13
252
+ 7
253
+ 13
254
+ 20
255
+ 1
256
+ 49
257
+ 14
258
+ 2
259
+ 15
260
+ 49
261
+ 15
262
+ 2
263
+ 11
264
+ I
265
+ 8
266
+ I
267
+ 2
268
+ I
269
+ 1
270
+ I
271
+ 2
272
+ n
273
+ p
274
+ 16
275
+ s
276
+ 1
277
+ ?
278
+ x
279
+ 4
280
+ I18n
281
+ n
282
+ x
283
+ 13
284
+ ActiveSupport
285
+ n
286
+ x
287
+ 9
288
+ Multibyte
289
+ x
290
+ 7
291
+ Unicode
292
+ n
293
+ x
294
+ 10
295
+ tidy_bytes
296
+ x
297
+ 1
298
+ c
299
+ x
300
+ 9
301
+ normalize
302
+ x
303
+ 4
304
+ Hash
305
+ x
306
+ 16
307
+ new_from_literal
308
+ x
309
+ 11
310
+ replacement
311
+ x
312
+ 3
313
+ []=
314
+ x
315
+ 13
316
+ transliterate
317
+ p
318
+ 13
319
+ I
320
+ -1
321
+ I
322
+ 3d
323
+ I
324
+ a
325
+ I
326
+ 3e
327
+ I
328
+ 14
329
+ I
330
+ 3f
331
+ I
332
+ 22
333
+ I
334
+ 3e
335
+ I
336
+ 25
337
+ I
338
+ 40
339
+ I
340
+ 35
341
+ I
342
+ 3e
343
+ I
344
+ 39
345
+ x
346
+ 96
347
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/transliterate.rb
348
+ p
349
+ 2
350
+ x
351
+ 6
352
+ string
353
+ x
354
+ 11
355
+ replacement
356
+ x
357
+ 17
358
+ method_visibility
359
+ x
360
+ 15
361
+ add_defn_method
362
+ x
363
+ 12
364
+ parameterize
365
+ M
366
+ 1
367
+ n
368
+ n
369
+ x
370
+ 12
371
+ parameterize
372
+ i
373
+ 140
374
+ 23
375
+ 1
376
+ 10
377
+ 10
378
+ 7
379
+ 0
380
+ 64
381
+ 19
382
+ 1
383
+ 15
384
+ 5
385
+ 20
386
+ 0
387
+ 47
388
+ 49
389
+ 1
390
+ 1
391
+ 19
392
+ 2
393
+ 15
394
+ 20
395
+ 2
396
+ 7
397
+ 2
398
+ 13
399
+ 70
400
+ 9
401
+ 40
402
+ 15
403
+ 44
404
+ 43
405
+ 3
406
+ 7
407
+ 4
408
+ 79
409
+ 49
410
+ 5
411
+ 2
412
+ 6
413
+ 2
414
+ 20
415
+ 1
416
+ 49
417
+ 6
418
+ 2
419
+ 15
420
+ 20
421
+ 1
422
+ 49
423
+ 7
424
+ 0
425
+ 13
426
+ 10
427
+ 60
428
+ 15
429
+ 20
430
+ 1
431
+ 49
432
+ 8
433
+ 0
434
+ 9
435
+ 65
436
+ 1
437
+ 8
438
+ 133
439
+ 45
440
+ 3
441
+ 9
442
+ 20
443
+ 1
444
+ 49
445
+ 10
446
+ 1
447
+ 19
448
+ 3
449
+ 15
450
+ 20
451
+ 2
452
+ 44
453
+ 43
454
+ 3
455
+ 20
456
+ 3
457
+ 47
458
+ 101
459
+ 11
460
+ 7
461
+ 12
462
+ 63
463
+ 2
464
+ 78
465
+ 49
466
+ 5
467
+ 2
468
+ 20
469
+ 1
470
+ 49
471
+ 6
472
+ 2
473
+ 15
474
+ 20
475
+ 2
476
+ 44
477
+ 43
478
+ 3
479
+ 7
480
+ 13
481
+ 20
482
+ 3
483
+ 47
484
+ 101
485
+ 11
486
+ 7
487
+ 14
488
+ 20
489
+ 3
490
+ 47
491
+ 101
492
+ 11
493
+ 7
494
+ 15
495
+ 63
496
+ 5
497
+ 79
498
+ 49
499
+ 5
500
+ 2
501
+ 7
502
+ 16
503
+ 64
504
+ 49
505
+ 6
506
+ 2
507
+ 15
508
+ 20
509
+ 2
510
+ 49
511
+ 17
512
+ 0
513
+ 11
514
+ I
515
+ b
516
+ I
517
+ 4
518
+ I
519
+ 1
520
+ I
521
+ 2
522
+ n
523
+ p
524
+ 18
525
+ s
526
+ 1
527
+ -
528
+ x
529
+ 13
530
+ transliterate
531
+ n
532
+ x
533
+ 6
534
+ Regexp
535
+ s
536
+ 13
537
+ [^a-z0-9\-_]+
538
+ x
539
+ 3
540
+ new
541
+ x
542
+ 5
543
+ gsub!
544
+ x
545
+ 4
546
+ nil?
547
+ x
548
+ 6
549
+ empty?
550
+ n
551
+ x
552
+ 6
553
+ escape
554
+ x
555
+ 4
556
+ to_s
557
+ s
558
+ 4
559
+ {2,}
560
+ s
561
+ 1
562
+ ^
563
+ s
564
+ 1
565
+ |
566
+ s
567
+ 1
568
+ $
569
+ s
570
+ 0
571
+
572
+ x
573
+ 8
574
+ downcase
575
+ p
576
+ 17
577
+ I
578
+ -1
579
+ I
580
+ 52
581
+ I
582
+ a
583
+ I
584
+ 54
585
+ I
586
+ 14
587
+ I
588
+ 56
589
+ I
590
+ 2e
591
+ I
592
+ 57
593
+ I
594
+ 41
595
+ I
596
+ 58
597
+ I
598
+ 4c
599
+ I
600
+ 5a
601
+ I
602
+ 64
603
+ I
604
+ 5c
605
+ I
606
+ 86
607
+ I
608
+ 5e
609
+ I
610
+ 8c
611
+ x
612
+ 96
613
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/transliterate.rb
614
+ p
615
+ 4
616
+ x
617
+ 6
618
+ string
619
+ x
620
+ 3
621
+ sep
622
+ x
623
+ 20
624
+ parameterized_string
625
+ x
626
+ 6
627
+ re_sep
628
+ p
629
+ 5
630
+ I
631
+ 2
632
+ I
633
+ 3d
634
+ I
635
+ 10
636
+ I
637
+ 52
638
+ I
639
+ 1e
640
+ x
641
+ 96
642
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/transliterate.rb
643
+ p
644
+ 0
645
+ x
646
+ 13
647
+ attach_method
648
+ p
649
+ 3
650
+ I
651
+ 2
652
+ I
653
+ 6
654
+ I
655
+ 1c
656
+ x
657
+ 96
658
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/transliterate.rb
659
+ p
660
+ 0
661
+ x
662
+ 13
663
+ attach_method
664
+ p
665
+ 7
666
+ I
667
+ 0
668
+ I
669
+ 2
670
+ I
671
+ 9
672
+ I
673
+ 3
674
+ I
675
+ 12
676
+ I
677
+ 5
678
+ I
679
+ 2e
680
+ x
681
+ 96
682
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/transliterate.rb
683
+ p
684
+ 0