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,1881 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 13
54
+ ActiveSupport
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 13
67
+ ActiveSupport
68
+ i
69
+ 28
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 65
76
+ 49
77
+ 1
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 2
84
+ 12
85
+ 7
86
+ 3
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 4
92
+ 4
93
+ 15
94
+ 49
95
+ 2
96
+ 0
97
+ 11
98
+ I
99
+ 6
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 5
109
+ x
110
+ 9
111
+ Inflector
112
+ x
113
+ 11
114
+ open_module
115
+ x
116
+ 15
117
+ __module_init__
118
+ M
119
+ 1
120
+ n
121
+ n
122
+ x
123
+ 9
124
+ Inflector
125
+ i
126
+ 138
127
+ 5
128
+ 66
129
+ 5
130
+ 5
131
+ 47
132
+ 49
133
+ 0
134
+ 1
135
+ 15
136
+ 99
137
+ 7
138
+ 1
139
+ 7
140
+ 2
141
+ 65
142
+ 67
143
+ 49
144
+ 3
145
+ 0
146
+ 49
147
+ 4
148
+ 4
149
+ 15
150
+ 99
151
+ 7
152
+ 5
153
+ 7
154
+ 6
155
+ 65
156
+ 67
157
+ 49
158
+ 3
159
+ 0
160
+ 49
161
+ 4
162
+ 4
163
+ 15
164
+ 99
165
+ 7
166
+ 7
167
+ 7
168
+ 8
169
+ 65
170
+ 67
171
+ 49
172
+ 3
173
+ 0
174
+ 49
175
+ 4
176
+ 4
177
+ 15
178
+ 99
179
+ 7
180
+ 9
181
+ 7
182
+ 10
183
+ 65
184
+ 67
185
+ 49
186
+ 3
187
+ 0
188
+ 49
189
+ 4
190
+ 4
191
+ 15
192
+ 99
193
+ 7
194
+ 11
195
+ 7
196
+ 12
197
+ 65
198
+ 67
199
+ 49
200
+ 3
201
+ 0
202
+ 49
203
+ 4
204
+ 4
205
+ 15
206
+ 45
207
+ 13
208
+ 14
209
+ 7
210
+ 15
211
+ 49
212
+ 16
213
+ 1
214
+ 49
215
+ 17
216
+ 0
217
+ 79
218
+ 83
219
+ 18
220
+ 9
221
+ 110
222
+ 99
223
+ 7
224
+ 19
225
+ 7
226
+ 20
227
+ 65
228
+ 67
229
+ 49
230
+ 3
231
+ 0
232
+ 49
233
+ 4
234
+ 4
235
+ 8
236
+ 123
237
+ 99
238
+ 7
239
+ 19
240
+ 7
241
+ 21
242
+ 65
243
+ 67
244
+ 49
245
+ 3
246
+ 0
247
+ 49
248
+ 4
249
+ 4
250
+ 15
251
+ 99
252
+ 7
253
+ 22
254
+ 7
255
+ 23
256
+ 65
257
+ 67
258
+ 49
259
+ 3
260
+ 0
261
+ 49
262
+ 4
263
+ 4
264
+ 11
265
+ I
266
+ 5
267
+ I
268
+ 0
269
+ I
270
+ 0
271
+ I
272
+ 0
273
+ n
274
+ p
275
+ 24
276
+ x
277
+ 6
278
+ extend
279
+ x
280
+ 8
281
+ camelize
282
+ M
283
+ 1
284
+ n
285
+ n
286
+ x
287
+ 8
288
+ camelize
289
+ i
290
+ 101
291
+ 23
292
+ 1
293
+ 10
294
+ 8
295
+ 2
296
+ 19
297
+ 1
298
+ 15
299
+ 20
300
+ 1
301
+ 9
302
+ 65
303
+ 20
304
+ 0
305
+ 49
306
+ 0
307
+ 0
308
+ 7
309
+ 1
310
+ 13
311
+ 70
312
+ 9
313
+ 35
314
+ 15
315
+ 44
316
+ 43
317
+ 2
318
+ 7
319
+ 3
320
+ 78
321
+ 49
322
+ 4
323
+ 2
324
+ 6
325
+ 1
326
+ 56
327
+ 5
328
+ 50
329
+ 6
330
+ 1
331
+ 7
332
+ 7
333
+ 13
334
+ 70
335
+ 9
336
+ 58
337
+ 15
338
+ 44
339
+ 43
340
+ 2
341
+ 7
342
+ 8
343
+ 78
344
+ 49
345
+ 4
346
+ 2
347
+ 6
348
+ 7
349
+ 56
350
+ 9
351
+ 50
352
+ 6
353
+ 1
354
+ 8
355
+ 100
356
+ 20
357
+ 0
358
+ 49
359
+ 0
360
+ 0
361
+ 78
362
+ 49
363
+ 10
364
+ 1
365
+ 49
366
+ 11
367
+ 0
368
+ 49
369
+ 12
370
+ 0
371
+ 5
372
+ 20
373
+ 0
374
+ 47
375
+ 49
376
+ 13
377
+ 1
378
+ 44
379
+ 43
380
+ 14
381
+ 79
382
+ 77
383
+ 49
384
+ 4
385
+ 2
386
+ 49
387
+ 10
388
+ 1
389
+ 81
390
+ 15
391
+ 11
392
+ I
393
+ 7
394
+ I
395
+ 2
396
+ I
397
+ 1
398
+ I
399
+ 2
400
+ n
401
+ p
402
+ 16
403
+ x
404
+ 4
405
+ to_s
406
+ n
407
+ x
408
+ 6
409
+ Regexp
410
+ s
411
+ 6
412
+ \/(.?)
413
+ x
414
+ 3
415
+ new
416
+ M
417
+ 1
418
+ p
419
+ 2
420
+ x
421
+ 9
422
+ for_block
423
+ t
424
+ n
425
+ x
426
+ 8
427
+ camelize
428
+ i
429
+ 17
430
+ 7
431
+ 0
432
+ 4
433
+ 5
434
+ 78
435
+ 98
436
+ 1
437
+ 2
438
+ 49
439
+ 2
440
+ 0
441
+ 47
442
+ 101
443
+ 3
444
+ 63
445
+ 2
446
+ 11
447
+ I
448
+ 4
449
+ I
450
+ 0
451
+ I
452
+ 0
453
+ I
454
+ 0
455
+ I
456
+ -2
457
+ p
458
+ 4
459
+ s
460
+ 2
461
+ ::
462
+ x
463
+ 24
464
+ regexp_last_match_result
465
+ x
466
+ 6
467
+ upcase
468
+ x
469
+ 4
470
+ to_s
471
+ p
472
+ 3
473
+ I
474
+ 0
475
+ I
476
+ 1e
477
+ I
478
+ 11
479
+ x
480
+ 90
481
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
482
+ p
483
+ 0
484
+ x
485
+ 4
486
+ gsub
487
+ n
488
+ s
489
+ 10
490
+ (?:^|_)(.)
491
+ M
492
+ 1
493
+ p
494
+ 2
495
+ x
496
+ 9
497
+ for_block
498
+ t
499
+ n
500
+ x
501
+ 8
502
+ camelize
503
+ i
504
+ 10
505
+ 4
506
+ 5
507
+ 78
508
+ 98
509
+ 0
510
+ 2
511
+ 49
512
+ 1
513
+ 0
514
+ 11
515
+ I
516
+ 3
517
+ I
518
+ 0
519
+ I
520
+ 0
521
+ I
522
+ 0
523
+ I
524
+ -2
525
+ p
526
+ 2
527
+ x
528
+ 24
529
+ regexp_last_match_result
530
+ x
531
+ 6
532
+ upcase
533
+ p
534
+ 3
535
+ I
536
+ 0
537
+ I
538
+ 1e
539
+ I
540
+ a
541
+ x
542
+ 90
543
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
544
+ p
545
+ 0
546
+ x
547
+ 2
548
+ []
549
+ x
550
+ 3
551
+ chr
552
+ x
553
+ 8
554
+ downcase
555
+ x
556
+ 8
557
+ camelize
558
+ x
559
+ 5
560
+ Range
561
+ x
562
+ 1
563
+ +
564
+ p
565
+ 9
566
+ I
567
+ -1
568
+ I
569
+ 1c
570
+ I
571
+ 8
572
+ I
573
+ 1d
574
+ I
575
+ c
576
+ I
577
+ 1e
578
+ I
579
+ 41
580
+ I
581
+ 20
582
+ I
583
+ 65
584
+ x
585
+ 90
586
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
587
+ p
588
+ 2
589
+ x
590
+ 31
591
+ lower_case_and_underscored_word
592
+ x
593
+ 25
594
+ first_letter_in_uppercase
595
+ x
596
+ 17
597
+ method_visibility
598
+ x
599
+ 15
600
+ add_defn_method
601
+ x
602
+ 10
603
+ underscore
604
+ M
605
+ 1
606
+ n
607
+ n
608
+ x
609
+ 10
610
+ underscore
611
+ i
612
+ 113
613
+ 20
614
+ 0
615
+ 49
616
+ 0
617
+ 0
618
+ 49
619
+ 1
620
+ 0
621
+ 19
622
+ 1
623
+ 15
624
+ 20
625
+ 1
626
+ 7
627
+ 2
628
+ 13
629
+ 70
630
+ 9
631
+ 31
632
+ 15
633
+ 44
634
+ 43
635
+ 3
636
+ 7
637
+ 4
638
+ 78
639
+ 49
640
+ 5
641
+ 2
642
+ 6
643
+ 2
644
+ 7
645
+ 6
646
+ 64
647
+ 49
648
+ 7
649
+ 2
650
+ 15
651
+ 20
652
+ 1
653
+ 7
654
+ 8
655
+ 13
656
+ 70
657
+ 9
658
+ 58
659
+ 15
660
+ 44
661
+ 43
662
+ 3
663
+ 7
664
+ 9
665
+ 78
666
+ 49
667
+ 5
668
+ 2
669
+ 6
670
+ 8
671
+ 7
672
+ 10
673
+ 64
674
+ 49
675
+ 7
676
+ 2
677
+ 15
678
+ 20
679
+ 1
680
+ 7
681
+ 11
682
+ 13
683
+ 70
684
+ 9
685
+ 85
686
+ 15
687
+ 44
688
+ 43
689
+ 3
690
+ 7
691
+ 12
692
+ 78
693
+ 49
694
+ 5
695
+ 2
696
+ 6
697
+ 11
698
+ 7
699
+ 10
700
+ 64
701
+ 49
702
+ 7
703
+ 2
704
+ 15
705
+ 20
706
+ 1
707
+ 7
708
+ 13
709
+ 64
710
+ 7
711
+ 14
712
+ 64
713
+ 49
714
+ 15
715
+ 2
716
+ 15
717
+ 20
718
+ 1
719
+ 49
720
+ 16
721
+ 0
722
+ 15
723
+ 20
724
+ 1
725
+ 11
726
+ I
727
+ 6
728
+ I
729
+ 2
730
+ I
731
+ 1
732
+ I
733
+ 1
734
+ n
735
+ p
736
+ 17
737
+ x
738
+ 4
739
+ to_s
740
+ x
741
+ 3
742
+ dup
743
+ n
744
+ x
745
+ 6
746
+ Regexp
747
+ s
748
+ 2
749
+ ::
750
+ x
751
+ 3
752
+ new
753
+ s
754
+ 1
755
+ /
756
+ x
757
+ 5
758
+ gsub!
759
+ n
760
+ s
761
+ 20
762
+ ([A-Z]+)([A-Z][a-z])
763
+ s
764
+ 5
765
+ \1_\2
766
+ n
767
+ s
768
+ 16
769
+ ([a-z\d])([A-Z])
770
+ s
771
+ 1
772
+ -
773
+ s
774
+ 1
775
+ _
776
+ x
777
+ 3
778
+ tr!
779
+ x
780
+ 9
781
+ downcase!
782
+ p
783
+ 17
784
+ I
785
+ -1
786
+ I
787
+ 30
788
+ I
789
+ 0
790
+ I
791
+ 31
792
+ I
793
+ b
794
+ I
795
+ 32
796
+ I
797
+ 26
798
+ I
799
+ 33
800
+ I
801
+ 41
802
+ I
803
+ 34
804
+ I
805
+ 5c
806
+ I
807
+ 35
808
+ I
809
+ 68
810
+ I
811
+ 36
812
+ I
813
+ 6e
814
+ I
815
+ 37
816
+ I
817
+ 71
818
+ x
819
+ 90
820
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
821
+ p
822
+ 2
823
+ x
824
+ 16
825
+ camel_cased_word
826
+ x
827
+ 4
828
+ word
829
+ x
830
+ 9
831
+ dasherize
832
+ M
833
+ 1
834
+ n
835
+ n
836
+ x
837
+ 9
838
+ dasherize
839
+ i
840
+ 27
841
+ 20
842
+ 0
843
+ 7
844
+ 0
845
+ 13
846
+ 70
847
+ 9
848
+ 20
849
+ 15
850
+ 44
851
+ 43
852
+ 1
853
+ 7
854
+ 2
855
+ 78
856
+ 49
857
+ 3
858
+ 2
859
+ 6
860
+ 0
861
+ 7
862
+ 4
863
+ 64
864
+ 49
865
+ 5
866
+ 2
867
+ 11
868
+ I
869
+ 5
870
+ I
871
+ 1
872
+ I
873
+ 1
874
+ I
875
+ 1
876
+ n
877
+ p
878
+ 6
879
+ n
880
+ x
881
+ 6
882
+ Regexp
883
+ s
884
+ 1
885
+ _
886
+ x
887
+ 3
888
+ new
889
+ s
890
+ 1
891
+ -
892
+ x
893
+ 4
894
+ gsub
895
+ p
896
+ 5
897
+ I
898
+ -1
899
+ I
900
+ 3e
901
+ I
902
+ 0
903
+ I
904
+ 3f
905
+ I
906
+ 1b
907
+ x
908
+ 90
909
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
910
+ p
911
+ 1
912
+ x
913
+ 16
914
+ underscored_word
915
+ x
916
+ 10
917
+ demodulize
918
+ M
919
+ 1
920
+ n
921
+ n
922
+ x
923
+ 10
924
+ demodulize
925
+ i
926
+ 30
927
+ 20
928
+ 0
929
+ 49
930
+ 0
931
+ 0
932
+ 7
933
+ 1
934
+ 13
935
+ 70
936
+ 9
937
+ 23
938
+ 15
939
+ 44
940
+ 43
941
+ 2
942
+ 7
943
+ 3
944
+ 78
945
+ 49
946
+ 4
947
+ 2
948
+ 6
949
+ 1
950
+ 7
951
+ 5
952
+ 64
953
+ 49
954
+ 6
955
+ 2
956
+ 11
957
+ I
958
+ 5
959
+ I
960
+ 1
961
+ I
962
+ 1
963
+ I
964
+ 1
965
+ n
966
+ p
967
+ 7
968
+ x
969
+ 4
970
+ to_s
971
+ n
972
+ x
973
+ 6
974
+ Regexp
975
+ s
976
+ 5
977
+ ^.*::
978
+ x
979
+ 3
980
+ new
981
+ s
982
+ 0
983
+
984
+ x
985
+ 4
986
+ gsub
987
+ p
988
+ 5
989
+ I
990
+ -1
991
+ I
992
+ 47
993
+ I
994
+ 0
995
+ I
996
+ 48
997
+ I
998
+ 1e
999
+ x
1000
+ 90
1001
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1002
+ p
1003
+ 1
1004
+ x
1005
+ 20
1006
+ class_name_in_module
1007
+ x
1008
+ 11
1009
+ foreign_key
1010
+ M
1011
+ 1
1012
+ n
1013
+ n
1014
+ x
1015
+ 11
1016
+ foreign_key
1017
+ i
1018
+ 35
1019
+ 23
1020
+ 1
1021
+ 10
1022
+ 8
1023
+ 2
1024
+ 19
1025
+ 1
1026
+ 15
1027
+ 5
1028
+ 5
1029
+ 20
1030
+ 0
1031
+ 47
1032
+ 49
1033
+ 0
1034
+ 1
1035
+ 47
1036
+ 49
1037
+ 1
1038
+ 1
1039
+ 20
1040
+ 1
1041
+ 9
1042
+ 29
1043
+ 7
1044
+ 2
1045
+ 64
1046
+ 8
1047
+ 32
1048
+ 7
1049
+ 3
1050
+ 64
1051
+ 81
1052
+ 4
1053
+ 11
1054
+ I
1055
+ 5
1056
+ I
1057
+ 2
1058
+ I
1059
+ 1
1060
+ I
1061
+ 2
1062
+ n
1063
+ p
1064
+ 5
1065
+ x
1066
+ 10
1067
+ demodulize
1068
+ x
1069
+ 10
1070
+ underscore
1071
+ s
1072
+ 3
1073
+ _id
1074
+ s
1075
+ 2
1076
+ id
1077
+ x
1078
+ 1
1079
+ +
1080
+ p
1081
+ 5
1082
+ I
1083
+ -1
1084
+ I
1085
+ 53
1086
+ I
1087
+ 8
1088
+ I
1089
+ 54
1090
+ I
1091
+ 23
1092
+ x
1093
+ 90
1094
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1095
+ p
1096
+ 2
1097
+ x
1098
+ 10
1099
+ class_name
1100
+ x
1101
+ 42
1102
+ separate_class_name_and_id_with_underscore
1103
+ x
1104
+ 6
1105
+ Module
1106
+ n
1107
+ x
1108
+ 9
1109
+ const_get
1110
+ x
1111
+ 6
1112
+ method
1113
+ x
1114
+ 5
1115
+ arity
1116
+ x
1117
+ 2
1118
+ ==
1119
+ x
1120
+ 11
1121
+ constantize
1122
+ M
1123
+ 1
1124
+ n
1125
+ n
1126
+ x
1127
+ 11
1128
+ constantize
1129
+ i
1130
+ 56
1131
+ 20
1132
+ 0
1133
+ 7
1134
+ 0
1135
+ 64
1136
+ 49
1137
+ 1
1138
+ 1
1139
+ 19
1140
+ 1
1141
+ 15
1142
+ 20
1143
+ 1
1144
+ 49
1145
+ 2
1146
+ 0
1147
+ 13
1148
+ 10
1149
+ 28
1150
+ 15
1151
+ 20
1152
+ 1
1153
+ 49
1154
+ 3
1155
+ 0
1156
+ 49
1157
+ 2
1158
+ 0
1159
+ 9
1160
+ 37
1161
+ 20
1162
+ 1
1163
+ 49
1164
+ 4
1165
+ 0
1166
+ 8
1167
+ 38
1168
+ 1
1169
+ 15
1170
+ 45
1171
+ 5
1172
+ 6
1173
+ 19
1174
+ 2
1175
+ 15
1176
+ 20
1177
+ 1
1178
+ 56
1179
+ 7
1180
+ 50
1181
+ 8
1182
+ 0
1183
+ 15
1184
+ 20
1185
+ 2
1186
+ 11
1187
+ I
1188
+ 5
1189
+ I
1190
+ 3
1191
+ I
1192
+ 1
1193
+ I
1194
+ 1
1195
+ n
1196
+ p
1197
+ 9
1198
+ s
1199
+ 2
1200
+ ::
1201
+ x
1202
+ 5
1203
+ split
1204
+ x
1205
+ 6
1206
+ empty?
1207
+ x
1208
+ 5
1209
+ first
1210
+ x
1211
+ 5
1212
+ shift
1213
+ x
1214
+ 6
1215
+ Object
1216
+ n
1217
+ M
1218
+ 1
1219
+ p
1220
+ 2
1221
+ x
1222
+ 9
1223
+ for_block
1224
+ t
1225
+ n
1226
+ x
1227
+ 11
1228
+ constantize
1229
+ i
1230
+ 36
1231
+ 57
1232
+ 19
1233
+ 0
1234
+ 15
1235
+ 21
1236
+ 1
1237
+ 2
1238
+ 20
1239
+ 0
1240
+ 49
1241
+ 0
1242
+ 1
1243
+ 9
1244
+ 24
1245
+ 21
1246
+ 1
1247
+ 2
1248
+ 20
1249
+ 0
1250
+ 49
1251
+ 1
1252
+ 1
1253
+ 8
1254
+ 32
1255
+ 21
1256
+ 1
1257
+ 2
1258
+ 20
1259
+ 0
1260
+ 49
1261
+ 2
1262
+ 1
1263
+ 22
1264
+ 1
1265
+ 2
1266
+ 11
1267
+ I
1268
+ 4
1269
+ I
1270
+ 1
1271
+ I
1272
+ 1
1273
+ I
1274
+ 1
1275
+ n
1276
+ p
1277
+ 3
1278
+ x
1279
+ 14
1280
+ const_defined?
1281
+ x
1282
+ 9
1283
+ const_get
1284
+ x
1285
+ 13
1286
+ const_missing
1287
+ p
1288
+ 5
1289
+ I
1290
+ 0
1291
+ I
1292
+ 70
1293
+ I
1294
+ 4
1295
+ I
1296
+ 71
1297
+ I
1298
+ 24
1299
+ x
1300
+ 90
1301
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1302
+ p
1303
+ 1
1304
+ x
1305
+ 4
1306
+ name
1307
+ x
1308
+ 4
1309
+ each
1310
+ p
1311
+ 13
1312
+ I
1313
+ -1
1314
+ I
1315
+ 6b
1316
+ I
1317
+ 0
1318
+ I
1319
+ 6c
1320
+ I
1321
+ b
1322
+ I
1323
+ 6d
1324
+ I
1325
+ 27
1326
+ I
1327
+ 6f
1328
+ I
1329
+ 2d
1330
+ I
1331
+ 70
1332
+ I
1333
+ 35
1334
+ I
1335
+ 73
1336
+ I
1337
+ 38
1338
+ x
1339
+ 90
1340
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1341
+ p
1342
+ 3
1343
+ x
1344
+ 16
1345
+ camel_cased_word
1346
+ x
1347
+ 5
1348
+ names
1349
+ x
1350
+ 8
1351
+ constant
1352
+ M
1353
+ 1
1354
+ n
1355
+ n
1356
+ x
1357
+ 11
1358
+ constantize
1359
+ i
1360
+ 56
1361
+ 20
1362
+ 0
1363
+ 7
1364
+ 0
1365
+ 64
1366
+ 49
1367
+ 1
1368
+ 1
1369
+ 19
1370
+ 1
1371
+ 15
1372
+ 20
1373
+ 1
1374
+ 49
1375
+ 2
1376
+ 0
1377
+ 13
1378
+ 10
1379
+ 28
1380
+ 15
1381
+ 20
1382
+ 1
1383
+ 49
1384
+ 3
1385
+ 0
1386
+ 49
1387
+ 2
1388
+ 0
1389
+ 9
1390
+ 37
1391
+ 20
1392
+ 1
1393
+ 49
1394
+ 4
1395
+ 0
1396
+ 8
1397
+ 38
1398
+ 1
1399
+ 15
1400
+ 45
1401
+ 5
1402
+ 6
1403
+ 19
1404
+ 2
1405
+ 15
1406
+ 20
1407
+ 1
1408
+ 56
1409
+ 7
1410
+ 50
1411
+ 8
1412
+ 0
1413
+ 15
1414
+ 20
1415
+ 2
1416
+ 11
1417
+ I
1418
+ 5
1419
+ I
1420
+ 3
1421
+ I
1422
+ 1
1423
+ I
1424
+ 1
1425
+ n
1426
+ p
1427
+ 9
1428
+ s
1429
+ 2
1430
+ ::
1431
+ x
1432
+ 5
1433
+ split
1434
+ x
1435
+ 6
1436
+ empty?
1437
+ x
1438
+ 5
1439
+ first
1440
+ x
1441
+ 5
1442
+ shift
1443
+ x
1444
+ 6
1445
+ Object
1446
+ n
1447
+ M
1448
+ 1
1449
+ p
1450
+ 2
1451
+ x
1452
+ 9
1453
+ for_block
1454
+ t
1455
+ n
1456
+ x
1457
+ 11
1458
+ constantize
1459
+ i
1460
+ 37
1461
+ 57
1462
+ 19
1463
+ 0
1464
+ 15
1465
+ 21
1466
+ 1
1467
+ 2
1468
+ 20
1469
+ 0
1470
+ 3
1471
+ 49
1472
+ 0
1473
+ 2
1474
+ 9
1475
+ 25
1476
+ 21
1477
+ 1
1478
+ 2
1479
+ 20
1480
+ 0
1481
+ 49
1482
+ 1
1483
+ 1
1484
+ 8
1485
+ 33
1486
+ 21
1487
+ 1
1488
+ 2
1489
+ 20
1490
+ 0
1491
+ 49
1492
+ 2
1493
+ 1
1494
+ 22
1495
+ 1
1496
+ 2
1497
+ 11
1498
+ I
1499
+ 5
1500
+ I
1501
+ 1
1502
+ I
1503
+ 1
1504
+ I
1505
+ 1
1506
+ n
1507
+ p
1508
+ 3
1509
+ x
1510
+ 14
1511
+ const_defined?
1512
+ x
1513
+ 9
1514
+ const_get
1515
+ x
1516
+ 13
1517
+ const_missing
1518
+ p
1519
+ 5
1520
+ I
1521
+ 0
1522
+ I
1523
+ 7b
1524
+ I
1525
+ 4
1526
+ I
1527
+ 7c
1528
+ I
1529
+ 25
1530
+ x
1531
+ 90
1532
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1533
+ p
1534
+ 1
1535
+ x
1536
+ 4
1537
+ name
1538
+ x
1539
+ 4
1540
+ each
1541
+ p
1542
+ 13
1543
+ I
1544
+ -1
1545
+ I
1546
+ 76
1547
+ I
1548
+ 0
1549
+ I
1550
+ 77
1551
+ I
1552
+ b
1553
+ I
1554
+ 78
1555
+ I
1556
+ 27
1557
+ I
1558
+ 7a
1559
+ I
1560
+ 2d
1561
+ I
1562
+ 7b
1563
+ I
1564
+ 35
1565
+ I
1566
+ 7e
1567
+ I
1568
+ 38
1569
+ x
1570
+ 90
1571
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1572
+ p
1573
+ 3
1574
+ x
1575
+ 16
1576
+ camel_cased_word
1577
+ x
1578
+ 5
1579
+ names
1580
+ x
1581
+ 8
1582
+ constant
1583
+ x
1584
+ 10
1585
+ ordinalize
1586
+ M
1587
+ 1
1588
+ n
1589
+ n
1590
+ x
1591
+ 10
1592
+ ordinalize
1593
+ i
1594
+ 118
1595
+ 44
1596
+ 43
1597
+ 0
1598
+ 4
1599
+ 11
1600
+ 4
1601
+ 13
1602
+ 49
1603
+ 1
1604
+ 2
1605
+ 20
1606
+ 0
1607
+ 49
1608
+ 2
1609
+ 0
1610
+ 4
1611
+ 100
1612
+ 49
1613
+ 3
1614
+ 1
1615
+ 49
1616
+ 4
1617
+ 1
1618
+ 9
1619
+ 36
1620
+ 20
1621
+ 0
1622
+ 47
1623
+ 101
1624
+ 5
1625
+ 7
1626
+ 6
1627
+ 63
1628
+ 2
1629
+ 8
1630
+ 117
1631
+ 20
1632
+ 0
1633
+ 49
1634
+ 2
1635
+ 0
1636
+ 4
1637
+ 10
1638
+ 49
1639
+ 3
1640
+ 1
1641
+ 13
1642
+ 79
1643
+ 12
1644
+ 49
1645
+ 7
1646
+ 1
1647
+ 9
1648
+ 66
1649
+ 15
1650
+ 20
1651
+ 0
1652
+ 47
1653
+ 101
1654
+ 5
1655
+ 7
1656
+ 8
1657
+ 63
1658
+ 2
1659
+ 8
1660
+ 117
1661
+ 13
1662
+ 80
1663
+ 12
1664
+ 49
1665
+ 7
1666
+ 1
1667
+ 9
1668
+ 86
1669
+ 15
1670
+ 20
1671
+ 0
1672
+ 47
1673
+ 101
1674
+ 5
1675
+ 7
1676
+ 9
1677
+ 63
1678
+ 2
1679
+ 8
1680
+ 117
1681
+ 13
1682
+ 4
1683
+ 3
1684
+ 12
1685
+ 49
1686
+ 7
1687
+ 1
1688
+ 9
1689
+ 107
1690
+ 15
1691
+ 20
1692
+ 0
1693
+ 47
1694
+ 101
1695
+ 5
1696
+ 7
1697
+ 10
1698
+ 63
1699
+ 2
1700
+ 8
1701
+ 117
1702
+ 15
1703
+ 20
1704
+ 0
1705
+ 47
1706
+ 101
1707
+ 5
1708
+ 7
1709
+ 6
1710
+ 63
1711
+ 2
1712
+ 11
1713
+ I
1714
+ 4
1715
+ I
1716
+ 1
1717
+ I
1718
+ 1
1719
+ I
1720
+ 1
1721
+ n
1722
+ p
1723
+ 11
1724
+ x
1725
+ 5
1726
+ Range
1727
+ x
1728
+ 3
1729
+ new
1730
+ x
1731
+ 4
1732
+ to_i
1733
+ x
1734
+ 1
1735
+ %
1736
+ x
1737
+ 8
1738
+ include?
1739
+ x
1740
+ 4
1741
+ to_s
1742
+ s
1743
+ 2
1744
+ th
1745
+ x
1746
+ 3
1747
+ ===
1748
+ s
1749
+ 2
1750
+ st
1751
+ s
1752
+ 2
1753
+ nd
1754
+ s
1755
+ 2
1756
+ rd
1757
+ p
1758
+ 17
1759
+ I
1760
+ -1
1761
+ I
1762
+ 8a
1763
+ I
1764
+ 0
1765
+ I
1766
+ 8b
1767
+ I
1768
+ 19
1769
+ I
1770
+ 8c
1771
+ I
1772
+ 24
1773
+ I
1774
+ 8e
1775
+ I
1776
+ 2e
1777
+ I
1778
+ 8f
1779
+ I
1780
+ 42
1781
+ I
1782
+ 90
1783
+ I
1784
+ 56
1785
+ I
1786
+ 91
1787
+ I
1788
+ 6c
1789
+ I
1790
+ 92
1791
+ I
1792
+ 76
1793
+ x
1794
+ 90
1795
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1796
+ p
1797
+ 1
1798
+ x
1799
+ 6
1800
+ number
1801
+ p
1802
+ 21
1803
+ I
1804
+ 2
1805
+ I
1806
+ b
1807
+ I
1808
+ 9
1809
+ I
1810
+ 1c
1811
+ I
1812
+ 17
1813
+ I
1814
+ 30
1815
+ I
1816
+ 25
1817
+ I
1818
+ 3e
1819
+ I
1820
+ 33
1821
+ I
1822
+ 47
1823
+ I
1824
+ 41
1825
+ I
1826
+ 53
1827
+ I
1828
+ 4f
1829
+ I
1830
+ 59
1831
+ I
1832
+ 5f
1833
+ I
1834
+ 6b
1835
+ I
1836
+ 6e
1837
+ I
1838
+ 76
1839
+ I
1840
+ 7c
1841
+ I
1842
+ 8a
1843
+ I
1844
+ 8a
1845
+ x
1846
+ 90
1847
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1848
+ p
1849
+ 0
1850
+ x
1851
+ 13
1852
+ attach_method
1853
+ p
1854
+ 3
1855
+ I
1856
+ 2
1857
+ I
1858
+ a
1859
+ I
1860
+ 1c
1861
+ x
1862
+ 90
1863
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1864
+ p
1865
+ 0
1866
+ x
1867
+ 13
1868
+ attach_method
1869
+ p
1870
+ 3
1871
+ I
1872
+ 0
1873
+ I
1874
+ 1
1875
+ I
1876
+ 1c
1877
+ x
1878
+ 90
1879
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/methods.rb
1880
+ p
1881
+ 0