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,1320 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 56
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
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 99
41
+ 7
42
+ 4
43
+ 1
44
+ 65
45
+ 49
46
+ 5
47
+ 3
48
+ 13
49
+ 99
50
+ 12
51
+ 7
52
+ 6
53
+ 12
54
+ 7
55
+ 7
56
+ 12
57
+ 65
58
+ 12
59
+ 49
60
+ 8
61
+ 4
62
+ 15
63
+ 49
64
+ 6
65
+ 0
66
+ 15
67
+ 2
68
+ 11
69
+ I
70
+ 6
71
+ I
72
+ 0
73
+ I
74
+ 0
75
+ I
76
+ 0
77
+ n
78
+ p
79
+ 9
80
+ s
81
+ 32
82
+ active_support/inflector/methods
83
+ x
84
+ 7
85
+ require
86
+ s
87
+ 36
88
+ active_support/inflector/inflections
89
+ s
90
+ 38
91
+ active_support/inflector/transliterate
92
+ x
93
+ 6
94
+ String
95
+ x
96
+ 10
97
+ open_class
98
+ x
99
+ 14
100
+ __class_init__
101
+ M
102
+ 1
103
+ n
104
+ n
105
+ x
106
+ 6
107
+ String
108
+ i
109
+ 204
110
+ 5
111
+ 66
112
+ 99
113
+ 7
114
+ 0
115
+ 7
116
+ 1
117
+ 65
118
+ 67
119
+ 49
120
+ 2
121
+ 0
122
+ 49
123
+ 3
124
+ 4
125
+ 15
126
+ 99
127
+ 7
128
+ 4
129
+ 7
130
+ 5
131
+ 65
132
+ 67
133
+ 49
134
+ 2
135
+ 0
136
+ 49
137
+ 3
138
+ 4
139
+ 15
140
+ 99
141
+ 7
142
+ 6
143
+ 7
144
+ 7
145
+ 65
146
+ 67
147
+ 49
148
+ 2
149
+ 0
150
+ 49
151
+ 3
152
+ 4
153
+ 15
154
+ 99
155
+ 7
156
+ 8
157
+ 7
158
+ 9
159
+ 65
160
+ 67
161
+ 49
162
+ 2
163
+ 0
164
+ 49
165
+ 3
166
+ 4
167
+ 15
168
+ 5
169
+ 7
170
+ 10
171
+ 7
172
+ 8
173
+ 47
174
+ 49
175
+ 11
176
+ 2
177
+ 15
178
+ 99
179
+ 7
180
+ 12
181
+ 7
182
+ 13
183
+ 65
184
+ 67
185
+ 49
186
+ 2
187
+ 0
188
+ 49
189
+ 3
190
+ 4
191
+ 15
192
+ 5
193
+ 7
194
+ 14
195
+ 7
196
+ 12
197
+ 47
198
+ 49
199
+ 11
200
+ 2
201
+ 15
202
+ 99
203
+ 7
204
+ 15
205
+ 7
206
+ 16
207
+ 65
208
+ 67
209
+ 49
210
+ 2
211
+ 0
212
+ 49
213
+ 3
214
+ 4
215
+ 15
216
+ 99
217
+ 7
218
+ 17
219
+ 7
220
+ 18
221
+ 65
222
+ 67
223
+ 49
224
+ 2
225
+ 0
226
+ 49
227
+ 3
228
+ 4
229
+ 15
230
+ 99
231
+ 7
232
+ 19
233
+ 7
234
+ 20
235
+ 65
236
+ 67
237
+ 49
238
+ 2
239
+ 0
240
+ 49
241
+ 3
242
+ 4
243
+ 15
244
+ 99
245
+ 7
246
+ 21
247
+ 7
248
+ 22
249
+ 65
250
+ 67
251
+ 49
252
+ 2
253
+ 0
254
+ 49
255
+ 3
256
+ 4
257
+ 15
258
+ 99
259
+ 7
260
+ 23
261
+ 7
262
+ 24
263
+ 65
264
+ 67
265
+ 49
266
+ 2
267
+ 0
268
+ 49
269
+ 3
270
+ 4
271
+ 15
272
+ 99
273
+ 7
274
+ 25
275
+ 7
276
+ 26
277
+ 65
278
+ 67
279
+ 49
280
+ 2
281
+ 0
282
+ 49
283
+ 3
284
+ 4
285
+ 15
286
+ 99
287
+ 7
288
+ 27
289
+ 7
290
+ 28
291
+ 65
292
+ 67
293
+ 49
294
+ 2
295
+ 0
296
+ 49
297
+ 3
298
+ 4
299
+ 15
300
+ 99
301
+ 7
302
+ 29
303
+ 7
304
+ 30
305
+ 65
306
+ 67
307
+ 49
308
+ 2
309
+ 0
310
+ 49
311
+ 3
312
+ 4
313
+ 11
314
+ I
315
+ 5
316
+ I
317
+ 0
318
+ I
319
+ 0
320
+ I
321
+ 0
322
+ n
323
+ p
324
+ 31
325
+ x
326
+ 9
327
+ pluralize
328
+ M
329
+ 1
330
+ n
331
+ n
332
+ x
333
+ 9
334
+ pluralize
335
+ i
336
+ 10
337
+ 45
338
+ 0
339
+ 1
340
+ 43
341
+ 2
342
+ 5
343
+ 49
344
+ 3
345
+ 1
346
+ 11
347
+ I
348
+ 2
349
+ I
350
+ 0
351
+ I
352
+ 0
353
+ I
354
+ 0
355
+ n
356
+ p
357
+ 4
358
+ x
359
+ 13
360
+ ActiveSupport
361
+ n
362
+ x
363
+ 9
364
+ Inflector
365
+ x
366
+ 9
367
+ pluralize
368
+ p
369
+ 5
370
+ I
371
+ -1
372
+ I
373
+ 13
374
+ I
375
+ 0
376
+ I
377
+ 14
378
+ I
379
+ a
380
+ x
381
+ 100
382
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
383
+ p
384
+ 0
385
+ x
386
+ 17
387
+ method_visibility
388
+ x
389
+ 15
390
+ add_defn_method
391
+ x
392
+ 11
393
+ singularize
394
+ M
395
+ 1
396
+ n
397
+ n
398
+ x
399
+ 11
400
+ singularize
401
+ i
402
+ 10
403
+ 45
404
+ 0
405
+ 1
406
+ 43
407
+ 2
408
+ 5
409
+ 49
410
+ 3
411
+ 1
412
+ 11
413
+ I
414
+ 2
415
+ I
416
+ 0
417
+ I
418
+ 0
419
+ I
420
+ 0
421
+ n
422
+ p
423
+ 4
424
+ x
425
+ 13
426
+ ActiveSupport
427
+ n
428
+ x
429
+ 9
430
+ Inflector
431
+ x
432
+ 11
433
+ singularize
434
+ p
435
+ 5
436
+ I
437
+ -1
438
+ I
439
+ 1f
440
+ I
441
+ 0
442
+ I
443
+ 20
444
+ I
445
+ a
446
+ x
447
+ 100
448
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
449
+ p
450
+ 0
451
+ x
452
+ 11
453
+ constantize
454
+ M
455
+ 1
456
+ n
457
+ n
458
+ x
459
+ 11
460
+ constantize
461
+ i
462
+ 10
463
+ 45
464
+ 0
465
+ 1
466
+ 43
467
+ 2
468
+ 5
469
+ 49
470
+ 3
471
+ 1
472
+ 11
473
+ I
474
+ 2
475
+ I
476
+ 0
477
+ I
478
+ 0
479
+ I
480
+ 0
481
+ n
482
+ p
483
+ 4
484
+ x
485
+ 13
486
+ ActiveSupport
487
+ n
488
+ x
489
+ 9
490
+ Inflector
491
+ x
492
+ 11
493
+ constantize
494
+ p
495
+ 5
496
+ I
497
+ -1
498
+ I
499
+ 2a
500
+ I
501
+ 0
502
+ I
503
+ 2b
504
+ I
505
+ a
506
+ x
507
+ 100
508
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
509
+ p
510
+ 0
511
+ x
512
+ 8
513
+ camelize
514
+ M
515
+ 1
516
+ n
517
+ n
518
+ x
519
+ 8
520
+ camelize
521
+ i
522
+ 58
523
+ 23
524
+ 0
525
+ 10
526
+ 9
527
+ 7
528
+ 0
529
+ 19
530
+ 0
531
+ 15
532
+ 20
533
+ 0
534
+ 13
535
+ 7
536
+ 0
537
+ 12
538
+ 49
539
+ 1
540
+ 1
541
+ 9
542
+ 33
543
+ 15
544
+ 45
545
+ 2
546
+ 3
547
+ 43
548
+ 4
549
+ 5
550
+ 2
551
+ 49
552
+ 5
553
+ 2
554
+ 8
555
+ 57
556
+ 13
557
+ 7
558
+ 6
559
+ 12
560
+ 49
561
+ 1
562
+ 1
563
+ 9
564
+ 55
565
+ 15
566
+ 45
567
+ 2
568
+ 7
569
+ 43
570
+ 4
571
+ 5
572
+ 3
573
+ 49
574
+ 5
575
+ 2
576
+ 8
577
+ 57
578
+ 15
579
+ 1
580
+ 11
581
+ I
582
+ 4
583
+ I
584
+ 1
585
+ I
586
+ 0
587
+ I
588
+ 1
589
+ n
590
+ p
591
+ 8
592
+ x
593
+ 5
594
+ upper
595
+ x
596
+ 3
597
+ ===
598
+ x
599
+ 13
600
+ ActiveSupport
601
+ n
602
+ x
603
+ 9
604
+ Inflector
605
+ x
606
+ 8
607
+ camelize
608
+ x
609
+ 5
610
+ lower
611
+ n
612
+ p
613
+ 11
614
+ I
615
+ -1
616
+ I
617
+ 37
618
+ I
619
+ 9
620
+ I
621
+ 38
622
+ I
623
+ b
624
+ I
625
+ 39
626
+ I
627
+ 21
628
+ I
629
+ 3a
630
+ I
631
+ 38
632
+ I
633
+ 38
634
+ I
635
+ 3a
636
+ x
637
+ 100
638
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
639
+ p
640
+ 1
641
+ x
642
+ 12
643
+ first_letter
644
+ x
645
+ 9
646
+ camelcase
647
+ x
648
+ 12
649
+ alias_method
650
+ x
651
+ 8
652
+ titleize
653
+ M
654
+ 1
655
+ n
656
+ n
657
+ x
658
+ 8
659
+ titleize
660
+ i
661
+ 10
662
+ 45
663
+ 0
664
+ 1
665
+ 43
666
+ 2
667
+ 5
668
+ 49
669
+ 3
670
+ 1
671
+ 11
672
+ I
673
+ 2
674
+ I
675
+ 0
676
+ I
677
+ 0
678
+ I
679
+ 0
680
+ n
681
+ p
682
+ 4
683
+ x
684
+ 13
685
+ ActiveSupport
686
+ n
687
+ x
688
+ 9
689
+ Inflector
690
+ x
691
+ 8
692
+ titleize
693
+ p
694
+ 5
695
+ I
696
+ -1
697
+ I
698
+ 47
699
+ I
700
+ 0
701
+ I
702
+ 48
703
+ I
704
+ a
705
+ x
706
+ 100
707
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
708
+ p
709
+ 0
710
+ x
711
+ 9
712
+ titlecase
713
+ x
714
+ 10
715
+ underscore
716
+ M
717
+ 1
718
+ n
719
+ n
720
+ x
721
+ 10
722
+ underscore
723
+ i
724
+ 10
725
+ 45
726
+ 0
727
+ 1
728
+ 43
729
+ 2
730
+ 5
731
+ 49
732
+ 3
733
+ 1
734
+ 11
735
+ I
736
+ 2
737
+ I
738
+ 0
739
+ I
740
+ 0
741
+ I
742
+ 0
743
+ n
744
+ p
745
+ 4
746
+ x
747
+ 13
748
+ ActiveSupport
749
+ n
750
+ x
751
+ 9
752
+ Inflector
753
+ x
754
+ 10
755
+ underscore
756
+ p
757
+ 5
758
+ I
759
+ -1
760
+ I
761
+ 52
762
+ I
763
+ 0
764
+ I
765
+ 53
766
+ I
767
+ a
768
+ x
769
+ 100
770
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
771
+ p
772
+ 0
773
+ x
774
+ 9
775
+ dasherize
776
+ M
777
+ 1
778
+ n
779
+ n
780
+ x
781
+ 9
782
+ dasherize
783
+ i
784
+ 10
785
+ 45
786
+ 0
787
+ 1
788
+ 43
789
+ 2
790
+ 5
791
+ 49
792
+ 3
793
+ 1
794
+ 11
795
+ I
796
+ 2
797
+ I
798
+ 0
799
+ I
800
+ 0
801
+ I
802
+ 0
803
+ n
804
+ p
805
+ 4
806
+ x
807
+ 13
808
+ ActiveSupport
809
+ n
810
+ x
811
+ 9
812
+ Inflector
813
+ x
814
+ 9
815
+ dasherize
816
+ p
817
+ 5
818
+ I
819
+ -1
820
+ I
821
+ 59
822
+ I
823
+ 0
824
+ I
825
+ 5a
826
+ I
827
+ a
828
+ x
829
+ 100
830
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
831
+ p
832
+ 0
833
+ x
834
+ 10
835
+ demodulize
836
+ M
837
+ 1
838
+ n
839
+ n
840
+ x
841
+ 10
842
+ demodulize
843
+ i
844
+ 10
845
+ 45
846
+ 0
847
+ 1
848
+ 43
849
+ 2
850
+ 5
851
+ 49
852
+ 3
853
+ 1
854
+ 11
855
+ I
856
+ 2
857
+ I
858
+ 0
859
+ I
860
+ 0
861
+ I
862
+ 0
863
+ n
864
+ p
865
+ 4
866
+ x
867
+ 13
868
+ ActiveSupport
869
+ n
870
+ x
871
+ 9
872
+ Inflector
873
+ x
874
+ 10
875
+ demodulize
876
+ p
877
+ 5
878
+ I
879
+ -1
880
+ I
881
+ 61
882
+ I
883
+ 0
884
+ I
885
+ 62
886
+ I
887
+ a
888
+ x
889
+ 100
890
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
891
+ p
892
+ 0
893
+ x
894
+ 12
895
+ parameterize
896
+ M
897
+ 1
898
+ n
899
+ n
900
+ x
901
+ 12
902
+ parameterize
903
+ i
904
+ 22
905
+ 23
906
+ 0
907
+ 10
908
+ 10
909
+ 7
910
+ 0
911
+ 64
912
+ 19
913
+ 0
914
+ 15
915
+ 45
916
+ 1
917
+ 2
918
+ 43
919
+ 3
920
+ 5
921
+ 20
922
+ 0
923
+ 49
924
+ 4
925
+ 2
926
+ 11
927
+ I
928
+ 4
929
+ I
930
+ 1
931
+ I
932
+ 0
933
+ I
934
+ 1
935
+ n
936
+ p
937
+ 5
938
+ s
939
+ 1
940
+ -
941
+ x
942
+ 13
943
+ ActiveSupport
944
+ n
945
+ x
946
+ 9
947
+ Inflector
948
+ x
949
+ 12
950
+ parameterize
951
+ p
952
+ 5
953
+ I
954
+ -1
955
+ I
956
+ 74
957
+ I
958
+ a
959
+ I
960
+ 75
961
+ I
962
+ 16
963
+ x
964
+ 100
965
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
966
+ p
967
+ 1
968
+ x
969
+ 3
970
+ sep
971
+ x
972
+ 8
973
+ tableize
974
+ M
975
+ 1
976
+ n
977
+ n
978
+ x
979
+ 8
980
+ tableize
981
+ i
982
+ 10
983
+ 45
984
+ 0
985
+ 1
986
+ 43
987
+ 2
988
+ 5
989
+ 49
990
+ 3
991
+ 1
992
+ 11
993
+ I
994
+ 2
995
+ I
996
+ 0
997
+ I
998
+ 0
999
+ I
1000
+ 0
1001
+ n
1002
+ p
1003
+ 4
1004
+ x
1005
+ 13
1006
+ ActiveSupport
1007
+ n
1008
+ x
1009
+ 9
1010
+ Inflector
1011
+ x
1012
+ 8
1013
+ tableize
1014
+ p
1015
+ 5
1016
+ I
1017
+ -1
1018
+ I
1019
+ 7e
1020
+ I
1021
+ 0
1022
+ I
1023
+ 7f
1024
+ I
1025
+ a
1026
+ x
1027
+ 100
1028
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
1029
+ p
1030
+ 0
1031
+ x
1032
+ 8
1033
+ classify
1034
+ M
1035
+ 1
1036
+ n
1037
+ n
1038
+ x
1039
+ 8
1040
+ classify
1041
+ i
1042
+ 10
1043
+ 45
1044
+ 0
1045
+ 1
1046
+ 43
1047
+ 2
1048
+ 5
1049
+ 49
1050
+ 3
1051
+ 1
1052
+ 11
1053
+ I
1054
+ 2
1055
+ I
1056
+ 0
1057
+ I
1058
+ 0
1059
+ I
1060
+ 0
1061
+ n
1062
+ p
1063
+ 4
1064
+ x
1065
+ 13
1066
+ ActiveSupport
1067
+ n
1068
+ x
1069
+ 9
1070
+ Inflector
1071
+ x
1072
+ 8
1073
+ classify
1074
+ p
1075
+ 5
1076
+ I
1077
+ -1
1078
+ I
1079
+ 8c
1080
+ I
1081
+ 0
1082
+ I
1083
+ 8d
1084
+ I
1085
+ a
1086
+ x
1087
+ 100
1088
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
1089
+ p
1090
+ 0
1091
+ x
1092
+ 8
1093
+ humanize
1094
+ M
1095
+ 1
1096
+ n
1097
+ n
1098
+ x
1099
+ 8
1100
+ humanize
1101
+ i
1102
+ 10
1103
+ 45
1104
+ 0
1105
+ 1
1106
+ 43
1107
+ 2
1108
+ 5
1109
+ 49
1110
+ 3
1111
+ 1
1112
+ 11
1113
+ I
1114
+ 2
1115
+ I
1116
+ 0
1117
+ I
1118
+ 0
1119
+ I
1120
+ 0
1121
+ n
1122
+ p
1123
+ 4
1124
+ x
1125
+ 13
1126
+ ActiveSupport
1127
+ n
1128
+ x
1129
+ 9
1130
+ Inflector
1131
+ x
1132
+ 8
1133
+ humanize
1134
+ p
1135
+ 5
1136
+ I
1137
+ -1
1138
+ I
1139
+ 95
1140
+ I
1141
+ 0
1142
+ I
1143
+ 96
1144
+ I
1145
+ a
1146
+ x
1147
+ 100
1148
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
1149
+ p
1150
+ 0
1151
+ x
1152
+ 11
1153
+ foreign_key
1154
+ M
1155
+ 1
1156
+ n
1157
+ n
1158
+ x
1159
+ 11
1160
+ foreign_key
1161
+ i
1162
+ 20
1163
+ 23
1164
+ 0
1165
+ 10
1166
+ 8
1167
+ 2
1168
+ 19
1169
+ 0
1170
+ 15
1171
+ 45
1172
+ 0
1173
+ 1
1174
+ 43
1175
+ 2
1176
+ 5
1177
+ 20
1178
+ 0
1179
+ 49
1180
+ 3
1181
+ 2
1182
+ 11
1183
+ I
1184
+ 4
1185
+ I
1186
+ 1
1187
+ I
1188
+ 0
1189
+ I
1190
+ 1
1191
+ n
1192
+ p
1193
+ 4
1194
+ x
1195
+ 13
1196
+ ActiveSupport
1197
+ n
1198
+ x
1199
+ 9
1200
+ Inflector
1201
+ x
1202
+ 11
1203
+ foreign_key
1204
+ p
1205
+ 5
1206
+ I
1207
+ -1
1208
+ I
1209
+ a1
1210
+ I
1211
+ 8
1212
+ I
1213
+ a2
1214
+ I
1215
+ 14
1216
+ x
1217
+ 100
1218
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
1219
+ p
1220
+ 1
1221
+ x
1222
+ 42
1223
+ separate_class_name_and_id_with_underscore
1224
+ p
1225
+ 31
1226
+ I
1227
+ 2
1228
+ I
1229
+ 13
1230
+ I
1231
+ 10
1232
+ I
1233
+ 1f
1234
+ I
1235
+ 1e
1236
+ I
1237
+ 2a
1238
+ I
1239
+ 2c
1240
+ I
1241
+ 37
1242
+ I
1243
+ 3a
1244
+ I
1245
+ 3d
1246
+ I
1247
+ 44
1248
+ I
1249
+ 47
1250
+ I
1251
+ 52
1252
+ I
1253
+ 4a
1254
+ I
1255
+ 5c
1256
+ I
1257
+ 52
1258
+ I
1259
+ 6a
1260
+ I
1261
+ 59
1262
+ I
1263
+ 78
1264
+ I
1265
+ 61
1266
+ I
1267
+ 86
1268
+ I
1269
+ 74
1270
+ I
1271
+ 94
1272
+ I
1273
+ 7e
1274
+ I
1275
+ a2
1276
+ I
1277
+ 8c
1278
+ I
1279
+ b0
1280
+ I
1281
+ 95
1282
+ I
1283
+ be
1284
+ I
1285
+ a1
1286
+ I
1287
+ cc
1288
+ x
1289
+ 100
1290
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
1291
+ p
1292
+ 0
1293
+ x
1294
+ 13
1295
+ attach_method
1296
+ p
1297
+ 9
1298
+ I
1299
+ 0
1300
+ I
1301
+ 1
1302
+ I
1303
+ 9
1304
+ I
1305
+ 2
1306
+ I
1307
+ 12
1308
+ I
1309
+ 3
1310
+ I
1311
+ 1b
1312
+ I
1313
+ a
1314
+ I
1315
+ 38
1316
+ x
1317
+ 100
1318
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/string/inflections.rb
1319
+ p
1320
+ 0