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,117 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 47
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
+ 5
41
+ 7
42
+ 4
43
+ 64
44
+ 47
45
+ 49
46
+ 1
47
+ 1
48
+ 15
49
+ 5
50
+ 7
51
+ 5
52
+ 64
53
+ 47
54
+ 49
55
+ 1
56
+ 1
57
+ 15
58
+ 2
59
+ 11
60
+ I
61
+ 2
62
+ I
63
+ 0
64
+ I
65
+ 0
66
+ I
67
+ 0
68
+ n
69
+ p
70
+ 6
71
+ s
72
+ 36
73
+ active_support/inflector/inflections
74
+ x
75
+ 7
76
+ require
77
+ s
78
+ 38
79
+ active_support/inflector/transliterate
80
+ s
81
+ 32
82
+ active_support/inflector/methods
83
+ s
84
+ 26
85
+ active_support/inflections
86
+ s
87
+ 42
88
+ active_support/core_ext/string/inflections
89
+ p
90
+ 11
91
+ I
92
+ 0
93
+ I
94
+ 2
95
+ I
96
+ 9
97
+ I
98
+ 3
99
+ I
100
+ 12
101
+ I
102
+ 4
103
+ I
104
+ 1b
105
+ I
106
+ 6
107
+ I
108
+ 24
109
+ I
110
+ 7
111
+ I
112
+ 2f
113
+ x
114
+ 82
115
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector.rb
116
+ p
117
+ 0
@@ -0,0 +1,3699 @@
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
+ 127
127
+ 5
128
+ 66
129
+ 99
130
+ 7
131
+ 0
132
+ 1
133
+ 65
134
+ 49
135
+ 1
136
+ 3
137
+ 13
138
+ 99
139
+ 12
140
+ 7
141
+ 2
142
+ 12
143
+ 7
144
+ 3
145
+ 12
146
+ 65
147
+ 12
148
+ 49
149
+ 4
150
+ 4
151
+ 15
152
+ 49
153
+ 2
154
+ 0
155
+ 15
156
+ 99
157
+ 7
158
+ 5
159
+ 7
160
+ 6
161
+ 65
162
+ 67
163
+ 49
164
+ 7
165
+ 0
166
+ 49
167
+ 8
168
+ 4
169
+ 15
170
+ 99
171
+ 7
172
+ 9
173
+ 7
174
+ 10
175
+ 65
176
+ 67
177
+ 49
178
+ 7
179
+ 0
180
+ 49
181
+ 8
182
+ 4
183
+ 15
184
+ 99
185
+ 7
186
+ 11
187
+ 7
188
+ 12
189
+ 65
190
+ 67
191
+ 49
192
+ 7
193
+ 0
194
+ 49
195
+ 8
196
+ 4
197
+ 15
198
+ 99
199
+ 7
200
+ 13
201
+ 7
202
+ 14
203
+ 65
204
+ 67
205
+ 49
206
+ 7
207
+ 0
208
+ 49
209
+ 8
210
+ 4
211
+ 15
212
+ 99
213
+ 7
214
+ 15
215
+ 7
216
+ 16
217
+ 65
218
+ 67
219
+ 49
220
+ 7
221
+ 0
222
+ 49
223
+ 8
224
+ 4
225
+ 15
226
+ 99
227
+ 7
228
+ 17
229
+ 7
230
+ 18
231
+ 65
232
+ 67
233
+ 49
234
+ 7
235
+ 0
236
+ 49
237
+ 8
238
+ 4
239
+ 15
240
+ 99
241
+ 7
242
+ 19
243
+ 7
244
+ 20
245
+ 65
246
+ 67
247
+ 49
248
+ 7
249
+ 0
250
+ 49
251
+ 8
252
+ 4
253
+ 11
254
+ I
255
+ 6
256
+ I
257
+ 0
258
+ I
259
+ 0
260
+ I
261
+ 0
262
+ n
263
+ p
264
+ 21
265
+ x
266
+ 11
267
+ Inflections
268
+ x
269
+ 10
270
+ open_class
271
+ x
272
+ 14
273
+ __class_init__
274
+ M
275
+ 1
276
+ n
277
+ n
278
+ x
279
+ 11
280
+ Inflections
281
+ i
282
+ 125
283
+ 5
284
+ 66
285
+ 99
286
+ 7
287
+ 0
288
+ 7
289
+ 1
290
+ 65
291
+ 5
292
+ 49
293
+ 2
294
+ 4
295
+ 15
296
+ 5
297
+ 7
298
+ 3
299
+ 7
300
+ 4
301
+ 7
302
+ 5
303
+ 7
304
+ 6
305
+ 47
306
+ 49
307
+ 7
308
+ 4
309
+ 15
310
+ 99
311
+ 7
312
+ 8
313
+ 7
314
+ 9
315
+ 65
316
+ 67
317
+ 49
318
+ 10
319
+ 0
320
+ 49
321
+ 11
322
+ 4
323
+ 15
324
+ 99
325
+ 7
326
+ 12
327
+ 7
328
+ 13
329
+ 65
330
+ 67
331
+ 49
332
+ 10
333
+ 0
334
+ 49
335
+ 11
336
+ 4
337
+ 15
338
+ 99
339
+ 7
340
+ 14
341
+ 7
342
+ 15
343
+ 65
344
+ 67
345
+ 49
346
+ 10
347
+ 0
348
+ 49
349
+ 11
350
+ 4
351
+ 15
352
+ 99
353
+ 7
354
+ 16
355
+ 7
356
+ 17
357
+ 65
358
+ 67
359
+ 49
360
+ 10
361
+ 0
362
+ 49
363
+ 11
364
+ 4
365
+ 15
366
+ 99
367
+ 7
368
+ 18
369
+ 7
370
+ 19
371
+ 65
372
+ 67
373
+ 49
374
+ 10
375
+ 0
376
+ 49
377
+ 11
378
+ 4
379
+ 15
380
+ 99
381
+ 7
382
+ 20
383
+ 7
384
+ 21
385
+ 65
386
+ 67
387
+ 49
388
+ 10
389
+ 0
390
+ 49
391
+ 11
392
+ 4
393
+ 15
394
+ 99
395
+ 7
396
+ 22
397
+ 7
398
+ 23
399
+ 65
400
+ 67
401
+ 49
402
+ 10
403
+ 0
404
+ 49
405
+ 11
406
+ 4
407
+ 11
408
+ I
409
+ 5
410
+ I
411
+ 0
412
+ I
413
+ 0
414
+ I
415
+ 0
416
+ n
417
+ p
418
+ 24
419
+ x
420
+ 8
421
+ instance
422
+ M
423
+ 1
424
+ n
425
+ n
426
+ x
427
+ 8
428
+ instance
429
+ i
430
+ 32
431
+ 39
432
+ 0
433
+ 13
434
+ 10
435
+ 31
436
+ 15
437
+ 5
438
+ 13
439
+ 72
440
+ 1
441
+ 47
442
+ 9
443
+ 25
444
+ 47
445
+ 49
446
+ 2
447
+ 0
448
+ 13
449
+ 47
450
+ 49
451
+ 3
452
+ 0
453
+ 15
454
+ 8
455
+ 29
456
+ 47
457
+ 49
458
+ 1
459
+ 0
460
+ 38
461
+ 0
462
+ 11
463
+ I
464
+ 2
465
+ I
466
+ 0
467
+ I
468
+ 0
469
+ I
470
+ 0
471
+ n
472
+ p
473
+ 4
474
+ x
475
+ 13
476
+ @__instance__
477
+ x
478
+ 3
479
+ new
480
+ x
481
+ 8
482
+ allocate
483
+ x
484
+ 10
485
+ initialize
486
+ p
487
+ 5
488
+ I
489
+ -1
490
+ I
491
+ 13
492
+ I
493
+ 0
494
+ I
495
+ 14
496
+ I
497
+ 20
498
+ x
499
+ 94
500
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
501
+ p
502
+ 0
503
+ x
504
+ 13
505
+ attach_method
506
+ x
507
+ 7
508
+ plurals
509
+ x
510
+ 9
511
+ singulars
512
+ x
513
+ 12
514
+ uncountables
515
+ x
516
+ 6
517
+ humans
518
+ x
519
+ 11
520
+ attr_reader
521
+ x
522
+ 10
523
+ initialize
524
+ M
525
+ 1
526
+ n
527
+ n
528
+ x
529
+ 10
530
+ initialize
531
+ i
532
+ 24
533
+ 35
534
+ 0
535
+ 35
536
+ 0
537
+ 35
538
+ 0
539
+ 35
540
+ 0
541
+ 17
542
+ 4
543
+ 38
544
+ 0
545
+ 15
546
+ 38
547
+ 1
548
+ 15
549
+ 38
550
+ 2
551
+ 15
552
+ 38
553
+ 3
554
+ 15
555
+ 2
556
+ 11
557
+ I
558
+ 4
559
+ I
560
+ 0
561
+ I
562
+ 0
563
+ I
564
+ 0
565
+ n
566
+ p
567
+ 4
568
+ x
569
+ 8
570
+ @plurals
571
+ x
572
+ 10
573
+ @singulars
574
+ x
575
+ 13
576
+ @uncountables
577
+ x
578
+ 7
579
+ @humans
580
+ p
581
+ 5
582
+ I
583
+ -1
584
+ I
585
+ 19
586
+ I
587
+ 0
588
+ I
589
+ 1a
590
+ I
591
+ 18
592
+ x
593
+ 94
594
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
595
+ p
596
+ 0
597
+ x
598
+ 17
599
+ method_visibility
600
+ x
601
+ 15
602
+ add_defn_method
603
+ x
604
+ 6
605
+ plural
606
+ M
607
+ 1
608
+ n
609
+ n
610
+ x
611
+ 6
612
+ plural
613
+ i
614
+ 42
615
+ 20
616
+ 0
617
+ 45
618
+ 0
619
+ 1
620
+ 49
621
+ 2
622
+ 1
623
+ 9
624
+ 19
625
+ 39
626
+ 3
627
+ 20
628
+ 0
629
+ 49
630
+ 4
631
+ 1
632
+ 8
633
+ 20
634
+ 1
635
+ 15
636
+ 39
637
+ 3
638
+ 20
639
+ 1
640
+ 49
641
+ 4
642
+ 1
643
+ 15
644
+ 39
645
+ 5
646
+ 78
647
+ 20
648
+ 0
649
+ 20
650
+ 1
651
+ 35
652
+ 2
653
+ 49
654
+ 6
655
+ 2
656
+ 11
657
+ I
658
+ 6
659
+ I
660
+ 2
661
+ I
662
+ 2
663
+ I
664
+ 2
665
+ n
666
+ p
667
+ 7
668
+ x
669
+ 6
670
+ String
671
+ n
672
+ x
673
+ 5
674
+ is_a?
675
+ x
676
+ 13
677
+ @uncountables
678
+ x
679
+ 6
680
+ delete
681
+ x
682
+ 8
683
+ @plurals
684
+ x
685
+ 6
686
+ insert
687
+ p
688
+ 9
689
+ I
690
+ -1
691
+ I
692
+ 1f
693
+ I
694
+ 0
695
+ I
696
+ 20
697
+ I
698
+ 15
699
+ I
700
+ 21
701
+ I
702
+ 1d
703
+ I
704
+ 22
705
+ I
706
+ 2a
707
+ x
708
+ 94
709
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
710
+ p
711
+ 2
712
+ x
713
+ 4
714
+ rule
715
+ x
716
+ 11
717
+ replacement
718
+ x
719
+ 8
720
+ singular
721
+ M
722
+ 1
723
+ n
724
+ n
725
+ x
726
+ 8
727
+ singular
728
+ i
729
+ 42
730
+ 20
731
+ 0
732
+ 45
733
+ 0
734
+ 1
735
+ 49
736
+ 2
737
+ 1
738
+ 9
739
+ 19
740
+ 39
741
+ 3
742
+ 20
743
+ 0
744
+ 49
745
+ 4
746
+ 1
747
+ 8
748
+ 20
749
+ 1
750
+ 15
751
+ 39
752
+ 3
753
+ 20
754
+ 1
755
+ 49
756
+ 4
757
+ 1
758
+ 15
759
+ 39
760
+ 5
761
+ 78
762
+ 20
763
+ 0
764
+ 20
765
+ 1
766
+ 35
767
+ 2
768
+ 49
769
+ 6
770
+ 2
771
+ 11
772
+ I
773
+ 6
774
+ I
775
+ 2
776
+ I
777
+ 2
778
+ I
779
+ 2
780
+ n
781
+ p
782
+ 7
783
+ x
784
+ 6
785
+ String
786
+ n
787
+ x
788
+ 5
789
+ is_a?
790
+ x
791
+ 13
792
+ @uncountables
793
+ x
794
+ 6
795
+ delete
796
+ x
797
+ 10
798
+ @singulars
799
+ x
800
+ 6
801
+ insert
802
+ p
803
+ 9
804
+ I
805
+ -1
806
+ I
807
+ 27
808
+ I
809
+ 0
810
+ I
811
+ 28
812
+ I
813
+ 15
814
+ I
815
+ 29
816
+ I
817
+ 1d
818
+ I
819
+ 2a
820
+ I
821
+ 2a
822
+ x
823
+ 94
824
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
825
+ p
826
+ 2
827
+ x
828
+ 4
829
+ rule
830
+ x
831
+ 11
832
+ replacement
833
+ x
834
+ 9
835
+ irregular
836
+ M
837
+ 1
838
+ n
839
+ n
840
+ x
841
+ 9
842
+ irregular
843
+ i
844
+ 1157
845
+ 39
846
+ 0
847
+ 20
848
+ 0
849
+ 49
850
+ 1
851
+ 1
852
+ 15
853
+ 39
854
+ 0
855
+ 20
856
+ 1
857
+ 49
858
+ 1
859
+ 1
860
+ 15
861
+ 20
862
+ 0
863
+ 78
864
+ 79
865
+ 49
866
+ 2
867
+ 2
868
+ 49
869
+ 3
870
+ 0
871
+ 20
872
+ 1
873
+ 78
874
+ 79
875
+ 49
876
+ 2
877
+ 2
878
+ 49
879
+ 3
880
+ 0
881
+ 83
882
+ 4
883
+ 9
884
+ 407
885
+ 5
886
+ 45
887
+ 5
888
+ 6
889
+ 13
890
+ 71
891
+ 7
892
+ 47
893
+ 9
894
+ 99
895
+ 47
896
+ 49
897
+ 8
898
+ 0
899
+ 13
900
+ 7
901
+ 9
902
+ 20
903
+ 0
904
+ 78
905
+ 79
906
+ 49
907
+ 2
908
+ 2
909
+ 47
910
+ 101
911
+ 10
912
+ 7
913
+ 11
914
+ 20
915
+ 0
916
+ 44
917
+ 43
918
+ 12
919
+ 79
920
+ 77
921
+ 49
922
+ 7
923
+ 2
924
+ 49
925
+ 2
926
+ 1
927
+ 47
928
+ 101
929
+ 10
930
+ 7
931
+ 13
932
+ 63
933
+ 5
934
+ 7
935
+ 14
936
+ 64
937
+ 47
938
+ 49
939
+ 15
940
+ 2
941
+ 15
942
+ 8
943
+ 139
944
+ 7
945
+ 9
946
+ 20
947
+ 0
948
+ 78
949
+ 79
950
+ 49
951
+ 2
952
+ 2
953
+ 47
954
+ 101
955
+ 10
956
+ 7
957
+ 11
958
+ 20
959
+ 0
960
+ 44
961
+ 43
962
+ 12
963
+ 79
964
+ 77
965
+ 49
966
+ 7
967
+ 2
968
+ 49
969
+ 2
970
+ 1
971
+ 47
972
+ 101
973
+ 10
974
+ 7
975
+ 13
976
+ 63
977
+ 5
978
+ 7
979
+ 14
980
+ 64
981
+ 49
982
+ 7
983
+ 2
984
+ 7
985
+ 16
986
+ 64
987
+ 20
988
+ 1
989
+ 44
990
+ 43
991
+ 12
992
+ 79
993
+ 77
994
+ 49
995
+ 7
996
+ 2
997
+ 49
998
+ 2
999
+ 1
1000
+ 81
1001
+ 17
1002
+ 47
1003
+ 49
1004
+ 18
1005
+ 2
1006
+ 15
1007
+ 5
1008
+ 45
1009
+ 5
1010
+ 19
1011
+ 13
1012
+ 71
1013
+ 7
1014
+ 47
1015
+ 9
1016
+ 221
1017
+ 47
1018
+ 49
1019
+ 8
1020
+ 0
1021
+ 13
1022
+ 7
1023
+ 9
1024
+ 20
1025
+ 1
1026
+ 78
1027
+ 79
1028
+ 49
1029
+ 2
1030
+ 2
1031
+ 47
1032
+ 101
1033
+ 10
1034
+ 7
1035
+ 11
1036
+ 20
1037
+ 1
1038
+ 44
1039
+ 43
1040
+ 12
1041
+ 79
1042
+ 77
1043
+ 49
1044
+ 7
1045
+ 2
1046
+ 49
1047
+ 2
1048
+ 1
1049
+ 47
1050
+ 101
1051
+ 10
1052
+ 7
1053
+ 13
1054
+ 63
1055
+ 5
1056
+ 7
1057
+ 14
1058
+ 64
1059
+ 47
1060
+ 49
1061
+ 15
1062
+ 2
1063
+ 15
1064
+ 8
1065
+ 261
1066
+ 7
1067
+ 9
1068
+ 20
1069
+ 1
1070
+ 78
1071
+ 79
1072
+ 49
1073
+ 2
1074
+ 2
1075
+ 47
1076
+ 101
1077
+ 10
1078
+ 7
1079
+ 11
1080
+ 20
1081
+ 1
1082
+ 44
1083
+ 43
1084
+ 12
1085
+ 79
1086
+ 77
1087
+ 49
1088
+ 7
1089
+ 2
1090
+ 49
1091
+ 2
1092
+ 1
1093
+ 47
1094
+ 101
1095
+ 10
1096
+ 7
1097
+ 13
1098
+ 63
1099
+ 5
1100
+ 7
1101
+ 14
1102
+ 64
1103
+ 49
1104
+ 7
1105
+ 2
1106
+ 7
1107
+ 16
1108
+ 64
1109
+ 20
1110
+ 1
1111
+ 44
1112
+ 43
1113
+ 12
1114
+ 79
1115
+ 77
1116
+ 49
1117
+ 7
1118
+ 2
1119
+ 49
1120
+ 2
1121
+ 1
1122
+ 81
1123
+ 17
1124
+ 47
1125
+ 49
1126
+ 18
1127
+ 2
1128
+ 15
1129
+ 5
1130
+ 45
1131
+ 5
1132
+ 20
1133
+ 13
1134
+ 71
1135
+ 7
1136
+ 47
1137
+ 9
1138
+ 343
1139
+ 47
1140
+ 49
1141
+ 8
1142
+ 0
1143
+ 13
1144
+ 7
1145
+ 9
1146
+ 20
1147
+ 1
1148
+ 78
1149
+ 79
1150
+ 49
1151
+ 2
1152
+ 2
1153
+ 47
1154
+ 101
1155
+ 10
1156
+ 7
1157
+ 11
1158
+ 20
1159
+ 1
1160
+ 44
1161
+ 43
1162
+ 12
1163
+ 79
1164
+ 77
1165
+ 49
1166
+ 7
1167
+ 2
1168
+ 49
1169
+ 2
1170
+ 1
1171
+ 47
1172
+ 101
1173
+ 10
1174
+ 7
1175
+ 13
1176
+ 63
1177
+ 5
1178
+ 7
1179
+ 14
1180
+ 64
1181
+ 47
1182
+ 49
1183
+ 15
1184
+ 2
1185
+ 15
1186
+ 8
1187
+ 383
1188
+ 7
1189
+ 9
1190
+ 20
1191
+ 1
1192
+ 78
1193
+ 79
1194
+ 49
1195
+ 2
1196
+ 2
1197
+ 47
1198
+ 101
1199
+ 10
1200
+ 7
1201
+ 11
1202
+ 20
1203
+ 1
1204
+ 44
1205
+ 43
1206
+ 12
1207
+ 79
1208
+ 77
1209
+ 49
1210
+ 7
1211
+ 2
1212
+ 49
1213
+ 2
1214
+ 1
1215
+ 47
1216
+ 101
1217
+ 10
1218
+ 7
1219
+ 13
1220
+ 63
1221
+ 5
1222
+ 7
1223
+ 14
1224
+ 64
1225
+ 49
1226
+ 7
1227
+ 2
1228
+ 7
1229
+ 16
1230
+ 64
1231
+ 20
1232
+ 0
1233
+ 44
1234
+ 43
1235
+ 12
1236
+ 79
1237
+ 77
1238
+ 49
1239
+ 7
1240
+ 2
1241
+ 49
1242
+ 2
1243
+ 1
1244
+ 81
1245
+ 17
1246
+ 47
1247
+ 49
1248
+ 21
1249
+ 2
1250
+ 8
1251
+ 1156
1252
+ 5
1253
+ 45
1254
+ 5
1255
+ 22
1256
+ 13
1257
+ 71
1258
+ 7
1259
+ 47
1260
+ 9
1261
+ 464
1262
+ 47
1263
+ 49
1264
+ 8
1265
+ 0
1266
+ 13
1267
+ 20
1268
+ 0
1269
+ 78
1270
+ 79
1271
+ 49
1272
+ 2
1273
+ 2
1274
+ 49
1275
+ 3
1276
+ 0
1277
+ 47
1278
+ 101
1279
+ 10
1280
+ 7
1281
+ 23
1282
+ 20
1283
+ 0
1284
+ 44
1285
+ 43
1286
+ 12
1287
+ 79
1288
+ 77
1289
+ 49
1290
+ 7
1291
+ 2
1292
+ 49
1293
+ 2
1294
+ 1
1295
+ 47
1296
+ 101
1297
+ 10
1298
+ 7
1299
+ 13
1300
+ 63
1301
+ 4
1302
+ 47
1303
+ 49
1304
+ 15
1305
+ 1
1306
+ 15
1307
+ 8
1308
+ 502
1309
+ 20
1310
+ 0
1311
+ 78
1312
+ 79
1313
+ 49
1314
+ 2
1315
+ 2
1316
+ 49
1317
+ 3
1318
+ 0
1319
+ 47
1320
+ 101
1321
+ 10
1322
+ 7
1323
+ 23
1324
+ 20
1325
+ 0
1326
+ 44
1327
+ 43
1328
+ 12
1329
+ 79
1330
+ 77
1331
+ 49
1332
+ 7
1333
+ 2
1334
+ 49
1335
+ 2
1336
+ 1
1337
+ 47
1338
+ 101
1339
+ 10
1340
+ 7
1341
+ 13
1342
+ 63
1343
+ 4
1344
+ 49
1345
+ 7
1346
+ 1
1347
+ 20
1348
+ 1
1349
+ 78
1350
+ 79
1351
+ 49
1352
+ 2
1353
+ 2
1354
+ 49
1355
+ 3
1356
+ 0
1357
+ 20
1358
+ 1
1359
+ 44
1360
+ 43
1361
+ 12
1362
+ 79
1363
+ 77
1364
+ 49
1365
+ 7
1366
+ 2
1367
+ 49
1368
+ 2
1369
+ 1
1370
+ 81
1371
+ 17
1372
+ 47
1373
+ 49
1374
+ 18
1375
+ 2
1376
+ 15
1377
+ 5
1378
+ 45
1379
+ 5
1380
+ 24
1381
+ 13
1382
+ 71
1383
+ 7
1384
+ 47
1385
+ 9
1386
+ 589
1387
+ 47
1388
+ 49
1389
+ 8
1390
+ 0
1391
+ 13
1392
+ 20
1393
+ 0
1394
+ 78
1395
+ 79
1396
+ 49
1397
+ 2
1398
+ 2
1399
+ 49
1400
+ 25
1401
+ 0
1402
+ 47
1403
+ 101
1404
+ 10
1405
+ 7
1406
+ 23
1407
+ 20
1408
+ 0
1409
+ 44
1410
+ 43
1411
+ 12
1412
+ 79
1413
+ 77
1414
+ 49
1415
+ 7
1416
+ 2
1417
+ 49
1418
+ 2
1419
+ 1
1420
+ 47
1421
+ 101
1422
+ 10
1423
+ 7
1424
+ 13
1425
+ 63
1426
+ 4
1427
+ 47
1428
+ 49
1429
+ 15
1430
+ 1
1431
+ 15
1432
+ 8
1433
+ 627
1434
+ 20
1435
+ 0
1436
+ 78
1437
+ 79
1438
+ 49
1439
+ 2
1440
+ 2
1441
+ 49
1442
+ 25
1443
+ 0
1444
+ 47
1445
+ 101
1446
+ 10
1447
+ 7
1448
+ 23
1449
+ 20
1450
+ 0
1451
+ 44
1452
+ 43
1453
+ 12
1454
+ 79
1455
+ 77
1456
+ 49
1457
+ 7
1458
+ 2
1459
+ 49
1460
+ 2
1461
+ 1
1462
+ 47
1463
+ 101
1464
+ 10
1465
+ 7
1466
+ 13
1467
+ 63
1468
+ 4
1469
+ 49
1470
+ 7
1471
+ 1
1472
+ 20
1473
+ 1
1474
+ 78
1475
+ 79
1476
+ 49
1477
+ 2
1478
+ 2
1479
+ 49
1480
+ 25
1481
+ 0
1482
+ 20
1483
+ 1
1484
+ 44
1485
+ 43
1486
+ 12
1487
+ 79
1488
+ 77
1489
+ 49
1490
+ 7
1491
+ 2
1492
+ 49
1493
+ 2
1494
+ 1
1495
+ 81
1496
+ 17
1497
+ 47
1498
+ 49
1499
+ 18
1500
+ 2
1501
+ 15
1502
+ 5
1503
+ 45
1504
+ 5
1505
+ 26
1506
+ 13
1507
+ 71
1508
+ 7
1509
+ 47
1510
+ 9
1511
+ 714
1512
+ 47
1513
+ 49
1514
+ 8
1515
+ 0
1516
+ 13
1517
+ 20
1518
+ 1
1519
+ 78
1520
+ 79
1521
+ 49
1522
+ 2
1523
+ 2
1524
+ 49
1525
+ 3
1526
+ 0
1527
+ 47
1528
+ 101
1529
+ 10
1530
+ 7
1531
+ 23
1532
+ 20
1533
+ 1
1534
+ 44
1535
+ 43
1536
+ 12
1537
+ 79
1538
+ 77
1539
+ 49
1540
+ 7
1541
+ 2
1542
+ 49
1543
+ 2
1544
+ 1
1545
+ 47
1546
+ 101
1547
+ 10
1548
+ 7
1549
+ 13
1550
+ 63
1551
+ 4
1552
+ 47
1553
+ 49
1554
+ 15
1555
+ 1
1556
+ 15
1557
+ 8
1558
+ 752
1559
+ 20
1560
+ 1
1561
+ 78
1562
+ 79
1563
+ 49
1564
+ 2
1565
+ 2
1566
+ 49
1567
+ 3
1568
+ 0
1569
+ 47
1570
+ 101
1571
+ 10
1572
+ 7
1573
+ 23
1574
+ 20
1575
+ 1
1576
+ 44
1577
+ 43
1578
+ 12
1579
+ 79
1580
+ 77
1581
+ 49
1582
+ 7
1583
+ 2
1584
+ 49
1585
+ 2
1586
+ 1
1587
+ 47
1588
+ 101
1589
+ 10
1590
+ 7
1591
+ 13
1592
+ 63
1593
+ 4
1594
+ 49
1595
+ 7
1596
+ 1
1597
+ 20
1598
+ 1
1599
+ 78
1600
+ 79
1601
+ 49
1602
+ 2
1603
+ 2
1604
+ 49
1605
+ 3
1606
+ 0
1607
+ 20
1608
+ 1
1609
+ 44
1610
+ 43
1611
+ 12
1612
+ 79
1613
+ 77
1614
+ 49
1615
+ 7
1616
+ 2
1617
+ 49
1618
+ 2
1619
+ 1
1620
+ 81
1621
+ 17
1622
+ 47
1623
+ 49
1624
+ 18
1625
+ 2
1626
+ 15
1627
+ 5
1628
+ 45
1629
+ 5
1630
+ 27
1631
+ 13
1632
+ 71
1633
+ 7
1634
+ 47
1635
+ 9
1636
+ 839
1637
+ 47
1638
+ 49
1639
+ 8
1640
+ 0
1641
+ 13
1642
+ 20
1643
+ 1
1644
+ 78
1645
+ 79
1646
+ 49
1647
+ 2
1648
+ 2
1649
+ 49
1650
+ 25
1651
+ 0
1652
+ 47
1653
+ 101
1654
+ 10
1655
+ 7
1656
+ 23
1657
+ 20
1658
+ 1
1659
+ 44
1660
+ 43
1661
+ 12
1662
+ 79
1663
+ 77
1664
+ 49
1665
+ 7
1666
+ 2
1667
+ 49
1668
+ 2
1669
+ 1
1670
+ 47
1671
+ 101
1672
+ 10
1673
+ 7
1674
+ 13
1675
+ 63
1676
+ 4
1677
+ 47
1678
+ 49
1679
+ 15
1680
+ 1
1681
+ 15
1682
+ 8
1683
+ 877
1684
+ 20
1685
+ 1
1686
+ 78
1687
+ 79
1688
+ 49
1689
+ 2
1690
+ 2
1691
+ 49
1692
+ 25
1693
+ 0
1694
+ 47
1695
+ 101
1696
+ 10
1697
+ 7
1698
+ 23
1699
+ 20
1700
+ 1
1701
+ 44
1702
+ 43
1703
+ 12
1704
+ 79
1705
+ 77
1706
+ 49
1707
+ 7
1708
+ 2
1709
+ 49
1710
+ 2
1711
+ 1
1712
+ 47
1713
+ 101
1714
+ 10
1715
+ 7
1716
+ 13
1717
+ 63
1718
+ 4
1719
+ 49
1720
+ 7
1721
+ 1
1722
+ 20
1723
+ 1
1724
+ 78
1725
+ 79
1726
+ 49
1727
+ 2
1728
+ 2
1729
+ 49
1730
+ 25
1731
+ 0
1732
+ 20
1733
+ 1
1734
+ 44
1735
+ 43
1736
+ 12
1737
+ 79
1738
+ 77
1739
+ 49
1740
+ 7
1741
+ 2
1742
+ 49
1743
+ 2
1744
+ 1
1745
+ 81
1746
+ 17
1747
+ 47
1748
+ 49
1749
+ 18
1750
+ 2
1751
+ 15
1752
+ 5
1753
+ 45
1754
+ 5
1755
+ 28
1756
+ 13
1757
+ 71
1758
+ 7
1759
+ 47
1760
+ 9
1761
+ 964
1762
+ 47
1763
+ 49
1764
+ 8
1765
+ 0
1766
+ 13
1767
+ 20
1768
+ 1
1769
+ 78
1770
+ 79
1771
+ 49
1772
+ 2
1773
+ 2
1774
+ 49
1775
+ 3
1776
+ 0
1777
+ 47
1778
+ 101
1779
+ 10
1780
+ 7
1781
+ 23
1782
+ 20
1783
+ 1
1784
+ 44
1785
+ 43
1786
+ 12
1787
+ 79
1788
+ 77
1789
+ 49
1790
+ 7
1791
+ 2
1792
+ 49
1793
+ 2
1794
+ 1
1795
+ 47
1796
+ 101
1797
+ 10
1798
+ 7
1799
+ 13
1800
+ 63
1801
+ 4
1802
+ 47
1803
+ 49
1804
+ 15
1805
+ 1
1806
+ 15
1807
+ 8
1808
+ 1002
1809
+ 20
1810
+ 1
1811
+ 78
1812
+ 79
1813
+ 49
1814
+ 2
1815
+ 2
1816
+ 49
1817
+ 3
1818
+ 0
1819
+ 47
1820
+ 101
1821
+ 10
1822
+ 7
1823
+ 23
1824
+ 20
1825
+ 1
1826
+ 44
1827
+ 43
1828
+ 12
1829
+ 79
1830
+ 77
1831
+ 49
1832
+ 7
1833
+ 2
1834
+ 49
1835
+ 2
1836
+ 1
1837
+ 47
1838
+ 101
1839
+ 10
1840
+ 7
1841
+ 13
1842
+ 63
1843
+ 4
1844
+ 49
1845
+ 7
1846
+ 1
1847
+ 20
1848
+ 0
1849
+ 78
1850
+ 79
1851
+ 49
1852
+ 2
1853
+ 2
1854
+ 49
1855
+ 3
1856
+ 0
1857
+ 20
1858
+ 0
1859
+ 44
1860
+ 43
1861
+ 12
1862
+ 79
1863
+ 77
1864
+ 49
1865
+ 7
1866
+ 2
1867
+ 49
1868
+ 2
1869
+ 1
1870
+ 81
1871
+ 17
1872
+ 47
1873
+ 49
1874
+ 21
1875
+ 2
1876
+ 15
1877
+ 5
1878
+ 45
1879
+ 5
1880
+ 29
1881
+ 13
1882
+ 71
1883
+ 7
1884
+ 47
1885
+ 9
1886
+ 1089
1887
+ 47
1888
+ 49
1889
+ 8
1890
+ 0
1891
+ 13
1892
+ 20
1893
+ 1
1894
+ 78
1895
+ 79
1896
+ 49
1897
+ 2
1898
+ 2
1899
+ 49
1900
+ 25
1901
+ 0
1902
+ 47
1903
+ 101
1904
+ 10
1905
+ 7
1906
+ 23
1907
+ 20
1908
+ 1
1909
+ 44
1910
+ 43
1911
+ 12
1912
+ 79
1913
+ 77
1914
+ 49
1915
+ 7
1916
+ 2
1917
+ 49
1918
+ 2
1919
+ 1
1920
+ 47
1921
+ 101
1922
+ 10
1923
+ 7
1924
+ 13
1925
+ 63
1926
+ 4
1927
+ 47
1928
+ 49
1929
+ 15
1930
+ 1
1931
+ 15
1932
+ 8
1933
+ 1127
1934
+ 20
1935
+ 1
1936
+ 78
1937
+ 79
1938
+ 49
1939
+ 2
1940
+ 2
1941
+ 49
1942
+ 25
1943
+ 0
1944
+ 47
1945
+ 101
1946
+ 10
1947
+ 7
1948
+ 23
1949
+ 20
1950
+ 1
1951
+ 44
1952
+ 43
1953
+ 12
1954
+ 79
1955
+ 77
1956
+ 49
1957
+ 7
1958
+ 2
1959
+ 49
1960
+ 2
1961
+ 1
1962
+ 47
1963
+ 101
1964
+ 10
1965
+ 7
1966
+ 13
1967
+ 63
1968
+ 4
1969
+ 49
1970
+ 7
1971
+ 1
1972
+ 20
1973
+ 0
1974
+ 78
1975
+ 79
1976
+ 49
1977
+ 2
1978
+ 2
1979
+ 49
1980
+ 25
1981
+ 0
1982
+ 20
1983
+ 0
1984
+ 44
1985
+ 43
1986
+ 12
1987
+ 79
1988
+ 77
1989
+ 49
1990
+ 7
1991
+ 2
1992
+ 49
1993
+ 2
1994
+ 1
1995
+ 81
1996
+ 17
1997
+ 47
1998
+ 49
1999
+ 21
2000
+ 2
2001
+ 11
2002
+ I
2003
+ c
2004
+ I
2005
+ 2
2006
+ I
2007
+ 2
2008
+ I
2009
+ 2
2010
+ n
2011
+ p
2012
+ 30
2013
+ x
2014
+ 13
2015
+ @uncountables
2016
+ x
2017
+ 6
2018
+ delete
2019
+ x
2020
+ 2
2021
+ []
2022
+ x
2023
+ 6
2024
+ upcase
2025
+ x
2026
+ 2
2027
+ ==
2028
+ x
2029
+ 6
2030
+ Regexp
2031
+ n
2032
+ x
2033
+ 3
2034
+ new
2035
+ x
2036
+ 8
2037
+ allocate
2038
+ s
2039
+ 1
2040
+ (
2041
+ x
2042
+ 4
2043
+ to_s
2044
+ s
2045
+ 1
2046
+ )
2047
+ x
2048
+ 5
2049
+ Range
2050
+ s
2051
+ 1
2052
+ $
2053
+ s
2054
+ 1
2055
+ i
2056
+ x
2057
+ 10
2058
+ initialize
2059
+ s
2060
+ 2
2061
+ \1
2062
+ x
2063
+ 1
2064
+ +
2065
+ x
2066
+ 6
2067
+ plural
2068
+ n
2069
+ n
2070
+ x
2071
+ 8
2072
+ singular
2073
+ n
2074
+ s
2075
+ 4
2076
+ (?i)
2077
+ n
2078
+ x
2079
+ 8
2080
+ downcase
2081
+ n
2082
+ n
2083
+ n
2084
+ n
2085
+ p
2086
+ 27
2087
+ I
2088
+ -1
2089
+ I
2090
+ 33
2091
+ I
2092
+ 0
2093
+ I
2094
+ 34
2095
+ I
2096
+ 8
2097
+ I
2098
+ 35
2099
+ I
2100
+ 10
2101
+ I
2102
+ 36
2103
+ I
2104
+ 28
2105
+ I
2106
+ 37
2107
+ I
2108
+ a2
2109
+ I
2110
+ 38
2111
+ I
2112
+ 11c
2113
+ I
2114
+ 39
2115
+ I
2116
+ 197
2117
+ I
2118
+ 3b
2119
+ I
2120
+ 214
2121
+ I
2122
+ 3c
2123
+ I
2124
+ 291
2125
+ I
2126
+ 3d
2127
+ I
2128
+ 30e
2129
+ I
2130
+ 3e
2131
+ I
2132
+ 38b
2133
+ I
2134
+ 3f
2135
+ I
2136
+ 408
2137
+ I
2138
+ 40
2139
+ I
2140
+ 485
2141
+ x
2142
+ 94
2143
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
2144
+ p
2145
+ 2
2146
+ x
2147
+ 8
2148
+ singular
2149
+ x
2150
+ 6
2151
+ plural
2152
+ x
2153
+ 11
2154
+ uncountable
2155
+ M
2156
+ 1
2157
+ n
2158
+ n
2159
+ x
2160
+ 11
2161
+ uncountable
2162
+ i
2163
+ 11
2164
+ 39
2165
+ 0
2166
+ 20
2167
+ 0
2168
+ 49
2169
+ 1
2170
+ 1
2171
+ 49
2172
+ 2
2173
+ 0
2174
+ 11
2175
+ I
2176
+ 3
2177
+ I
2178
+ 1
2179
+ I
2180
+ 0
2181
+ I
2182
+ 0
2183
+ I
2184
+ 0
2185
+ p
2186
+ 3
2187
+ x
2188
+ 13
2189
+ @uncountables
2190
+ x
2191
+ 2
2192
+ <<
2193
+ x
2194
+ 8
2195
+ flatten!
2196
+ p
2197
+ 5
2198
+ I
2199
+ -1
2200
+ I
2201
+ 4a
2202
+ I
2203
+ 0
2204
+ I
2205
+ 4b
2206
+ I
2207
+ b
2208
+ x
2209
+ 94
2210
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
2211
+ p
2212
+ 1
2213
+ x
2214
+ 5
2215
+ words
2216
+ x
2217
+ 5
2218
+ human
2219
+ M
2220
+ 1
2221
+ n
2222
+ n
2223
+ x
2224
+ 5
2225
+ human
2226
+ i
2227
+ 13
2228
+ 39
2229
+ 0
2230
+ 78
2231
+ 20
2232
+ 0
2233
+ 20
2234
+ 1
2235
+ 35
2236
+ 2
2237
+ 49
2238
+ 1
2239
+ 2
2240
+ 11
2241
+ I
2242
+ 6
2243
+ I
2244
+ 2
2245
+ I
2246
+ 2
2247
+ I
2248
+ 2
2249
+ n
2250
+ p
2251
+ 2
2252
+ x
2253
+ 7
2254
+ @humans
2255
+ x
2256
+ 6
2257
+ insert
2258
+ p
2259
+ 5
2260
+ I
2261
+ -1
2262
+ I
2263
+ 55
2264
+ I
2265
+ 0
2266
+ I
2267
+ 56
2268
+ I
2269
+ d
2270
+ x
2271
+ 94
2272
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
2273
+ p
2274
+ 2
2275
+ x
2276
+ 4
2277
+ rule
2278
+ x
2279
+ 11
2280
+ replacement
2281
+ x
2282
+ 5
2283
+ clear
2284
+ M
2285
+ 1
2286
+ n
2287
+ n
2288
+ x
2289
+ 5
2290
+ clear
2291
+ i
2292
+ 59
2293
+ 23
2294
+ 0
2295
+ 10
2296
+ 9
2297
+ 7
2298
+ 0
2299
+ 19
2300
+ 0
2301
+ 15
2302
+ 20
2303
+ 0
2304
+ 13
2305
+ 7
2306
+ 0
2307
+ 12
2308
+ 49
2309
+ 1
2310
+ 1
2311
+ 9
2312
+ 41
2313
+ 15
2314
+ 35
2315
+ 0
2316
+ 35
2317
+ 0
2318
+ 35
2319
+ 0
2320
+ 17
2321
+ 3
2322
+ 38
2323
+ 2
2324
+ 15
2325
+ 38
2326
+ 3
2327
+ 15
2328
+ 38
2329
+ 4
2330
+ 15
2331
+ 2
2332
+ 8
2333
+ 58
2334
+ 15
2335
+ 5
2336
+ 7
2337
+ 5
2338
+ 20
2339
+ 0
2340
+ 47
2341
+ 101
2342
+ 6
2343
+ 63
2344
+ 2
2345
+ 35
2346
+ 0
2347
+ 47
2348
+ 49
2349
+ 7
2350
+ 2
2351
+ 11
2352
+ I
2353
+ 4
2354
+ I
2355
+ 1
2356
+ I
2357
+ 0
2358
+ I
2359
+ 1
2360
+ n
2361
+ p
2362
+ 8
2363
+ x
2364
+ 3
2365
+ all
2366
+ x
2367
+ 3
2368
+ ===
2369
+ x
2370
+ 8
2371
+ @plurals
2372
+ x
2373
+ 10
2374
+ @singulars
2375
+ x
2376
+ 13
2377
+ @uncountables
2378
+ s
2379
+ 1
2380
+ @
2381
+ x
2382
+ 4
2383
+ to_s
2384
+ x
2385
+ 21
2386
+ instance_variable_set
2387
+ p
2388
+ 11
2389
+ I
2390
+ -1
2391
+ I
2392
+ 60
2393
+ I
2394
+ 9
2395
+ I
2396
+ 61
2397
+ I
2398
+ b
2399
+ I
2400
+ 62
2401
+ I
2402
+ 15
2403
+ I
2404
+ 63
2405
+ I
2406
+ 2a
2407
+ I
2408
+ 65
2409
+ I
2410
+ 3b
2411
+ x
2412
+ 94
2413
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
2414
+ p
2415
+ 1
2416
+ x
2417
+ 5
2418
+ scope
2419
+ p
2420
+ 19
2421
+ I
2422
+ 2
2423
+ I
2424
+ 13
2425
+ I
2426
+ d
2427
+ I
2428
+ 17
2429
+ I
2430
+ 1b
2431
+ I
2432
+ 19
2433
+ I
2434
+ 29
2435
+ I
2436
+ 1f
2437
+ I
2438
+ 37
2439
+ I
2440
+ 27
2441
+ I
2442
+ 45
2443
+ I
2444
+ 33
2445
+ I
2446
+ 53
2447
+ I
2448
+ 4a
2449
+ I
2450
+ 61
2451
+ I
2452
+ 55
2453
+ I
2454
+ 6f
2455
+ I
2456
+ 60
2457
+ I
2458
+ 7d
2459
+ x
2460
+ 94
2461
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
2462
+ p
2463
+ 0
2464
+ x
2465
+ 13
2466
+ attach_method
2467
+ x
2468
+ 11
2469
+ inflections
2470
+ M
2471
+ 1
2472
+ n
2473
+ n
2474
+ x
2475
+ 11
2476
+ inflections
2477
+ i
2478
+ 20
2479
+ 94
2480
+ 9
2481
+ 13
2482
+ 45
2483
+ 0
2484
+ 1
2485
+ 49
2486
+ 2
2487
+ 0
2488
+ 60
2489
+ 1
2490
+ 8
2491
+ 19
2492
+ 45
2493
+ 0
2494
+ 3
2495
+ 49
2496
+ 2
2497
+ 0
2498
+ 11
2499
+ I
2500
+ 1
2501
+ I
2502
+ 0
2503
+ I
2504
+ 0
2505
+ I
2506
+ 0
2507
+ n
2508
+ p
2509
+ 4
2510
+ x
2511
+ 11
2512
+ Inflections
2513
+ n
2514
+ x
2515
+ 8
2516
+ instance
2517
+ n
2518
+ p
2519
+ 9
2520
+ I
2521
+ -1
2522
+ I
2523
+ 71
2524
+ I
2525
+ 0
2526
+ I
2527
+ 72
2528
+ I
2529
+ 3
2530
+ I
2531
+ 73
2532
+ I
2533
+ d
2534
+ I
2535
+ 75
2536
+ I
2537
+ 14
2538
+ x
2539
+ 94
2540
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
2541
+ p
2542
+ 0
2543
+ x
2544
+ 17
2545
+ method_visibility
2546
+ x
2547
+ 15
2548
+ add_defn_method
2549
+ x
2550
+ 9
2551
+ pluralize
2552
+ M
2553
+ 1
2554
+ n
2555
+ n
2556
+ x
2557
+ 9
2558
+ pluralize
2559
+ i
2560
+ 55
2561
+ 20
2562
+ 0
2563
+ 49
2564
+ 0
2565
+ 0
2566
+ 49
2567
+ 1
2568
+ 0
2569
+ 19
2570
+ 1
2571
+ 15
2572
+ 20
2573
+ 0
2574
+ 49
2575
+ 2
2576
+ 0
2577
+ 13
2578
+ 10
2579
+ 34
2580
+ 15
2581
+ 5
2582
+ 48
2583
+ 3
2584
+ 49
2585
+ 4
2586
+ 0
2587
+ 20
2588
+ 1
2589
+ 49
2590
+ 5
2591
+ 0
2592
+ 49
2593
+ 6
2594
+ 1
2595
+ 9
2596
+ 40
2597
+ 20
2598
+ 1
2599
+ 8
2600
+ 54
2601
+ 5
2602
+ 48
2603
+ 3
2604
+ 49
2605
+ 7
2606
+ 0
2607
+ 56
2608
+ 8
2609
+ 50
2610
+ 9
2611
+ 0
2612
+ 15
2613
+ 20
2614
+ 1
2615
+ 11
2616
+ I
2617
+ 4
2618
+ I
2619
+ 2
2620
+ I
2621
+ 1
2622
+ I
2623
+ 1
2624
+ n
2625
+ p
2626
+ 10
2627
+ x
2628
+ 4
2629
+ to_s
2630
+ x
2631
+ 3
2632
+ dup
2633
+ x
2634
+ 6
2635
+ empty?
2636
+ x
2637
+ 11
2638
+ inflections
2639
+ x
2640
+ 12
2641
+ uncountables
2642
+ x
2643
+ 8
2644
+ downcase
2645
+ x
2646
+ 8
2647
+ include?
2648
+ x
2649
+ 7
2650
+ plurals
2651
+ M
2652
+ 1
2653
+ p
2654
+ 2
2655
+ x
2656
+ 9
2657
+ for_block
2658
+ t
2659
+ n
2660
+ x
2661
+ 9
2662
+ pluralize
2663
+ i
2664
+ 28
2665
+ 58
2666
+ 37
2667
+ 19
2668
+ 0
2669
+ 15
2670
+ 37
2671
+ 19
2672
+ 1
2673
+ 15
2674
+ 15
2675
+ 21
2676
+ 1
2677
+ 1
2678
+ 20
2679
+ 0
2680
+ 20
2681
+ 1
2682
+ 49
2683
+ 0
2684
+ 2
2685
+ 9
2686
+ 26
2687
+ 1
2688
+ 33
2689
+ 8
2690
+ 27
2691
+ 1
2692
+ 11
2693
+ I
2694
+ 6
2695
+ I
2696
+ 2
2697
+ I
2698
+ 2
2699
+ I
2700
+ 2
2701
+ n
2702
+ p
2703
+ 1
2704
+ x
2705
+ 5
2706
+ gsub!
2707
+ p
2708
+ 3
2709
+ I
2710
+ 0
2711
+ I
2712
+ 87
2713
+ I
2714
+ 1c
2715
+ x
2716
+ 94
2717
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
2718
+ p
2719
+ 2
2720
+ x
2721
+ 4
2722
+ rule
2723
+ x
2724
+ 11
2725
+ replacement
2726
+ x
2727
+ 4
2728
+ each
2729
+ p
2730
+ 13
2731
+ I
2732
+ -1
2733
+ I
2734
+ 81
2735
+ I
2736
+ 0
2737
+ I
2738
+ 82
2739
+ I
2740
+ b
2741
+ I
2742
+ 84
2743
+ I
2744
+ 24
2745
+ I
2746
+ 85
2747
+ I
2748
+ 28
2749
+ I
2750
+ 87
2751
+ I
2752
+ 34
2753
+ I
2754
+ 88
2755
+ I
2756
+ 37
2757
+ x
2758
+ 94
2759
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
2760
+ p
2761
+ 2
2762
+ x
2763
+ 4
2764
+ word
2765
+ x
2766
+ 6
2767
+ result
2768
+ x
2769
+ 11
2770
+ singularize
2771
+ M
2772
+ 1
2773
+ n
2774
+ n
2775
+ x
2776
+ 11
2777
+ singularize
2778
+ i
2779
+ 43
2780
+ 20
2781
+ 0
2782
+ 49
2783
+ 0
2784
+ 0
2785
+ 49
2786
+ 1
2787
+ 0
2788
+ 19
2789
+ 1
2790
+ 15
2791
+ 5
2792
+ 48
2793
+ 2
2794
+ 49
2795
+ 3
2796
+ 0
2797
+ 56
2798
+ 4
2799
+ 50
2800
+ 5
2801
+ 0
2802
+ 9
2803
+ 28
2804
+ 20
2805
+ 1
2806
+ 8
2807
+ 42
2808
+ 5
2809
+ 48
2810
+ 2
2811
+ 49
2812
+ 6
2813
+ 0
2814
+ 56
2815
+ 7
2816
+ 50
2817
+ 8
2818
+ 0
2819
+ 15
2820
+ 20
2821
+ 1
2822
+ 11
2823
+ I
2824
+ 4
2825
+ I
2826
+ 2
2827
+ I
2828
+ 1
2829
+ I
2830
+ 1
2831
+ n
2832
+ p
2833
+ 9
2834
+ x
2835
+ 4
2836
+ to_s
2837
+ x
2838
+ 3
2839
+ dup
2840
+ x
2841
+ 11
2842
+ inflections
2843
+ x
2844
+ 12
2845
+ uncountables
2846
+ M
2847
+ 1
2848
+ p
2849
+ 2
2850
+ x
2851
+ 9
2852
+ for_block
2853
+ t
2854
+ n
2855
+ x
2856
+ 11
2857
+ singularize
2858
+ i
2859
+ 29
2860
+ 57
2861
+ 19
2862
+ 0
2863
+ 15
2864
+ 21
2865
+ 1
2866
+ 1
2867
+ 44
2868
+ 43
2869
+ 0
2870
+ 7
2871
+ 1
2872
+ 20
2873
+ 0
2874
+ 47
2875
+ 101
2876
+ 2
2877
+ 7
2878
+ 3
2879
+ 63
2880
+ 3
2881
+ 79
2882
+ 49
2883
+ 4
2884
+ 2
2885
+ 49
2886
+ 5
2887
+ 1
2888
+ 11
2889
+ I
2890
+ 7
2891
+ I
2892
+ 1
2893
+ I
2894
+ 1
2895
+ I
2896
+ 1
2897
+ n
2898
+ p
2899
+ 6
2900
+ x
2901
+ 6
2902
+ Regexp
2903
+ s
2904
+ 3
2905
+ \b(
2906
+ x
2907
+ 4
2908
+ to_s
2909
+ s
2910
+ 3
2911
+ )\Z
2912
+ x
2913
+ 3
2914
+ new
2915
+ x
2916
+ 2
2917
+ =~
2918
+ p
2919
+ 3
2920
+ I
2921
+ 0
2922
+ I
2923
+ 97
2924
+ I
2925
+ 1d
2926
+ x
2927
+ 94
2928
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
2929
+ p
2930
+ 1
2931
+ x
2932
+ 10
2933
+ inflection
2934
+ x
2935
+ 4
2936
+ any?
2937
+ x
2938
+ 9
2939
+ singulars
2940
+ M
2941
+ 1
2942
+ p
2943
+ 2
2944
+ x
2945
+ 9
2946
+ for_block
2947
+ t
2948
+ n
2949
+ x
2950
+ 11
2951
+ singularize
2952
+ i
2953
+ 28
2954
+ 58
2955
+ 37
2956
+ 19
2957
+ 0
2958
+ 15
2959
+ 37
2960
+ 19
2961
+ 1
2962
+ 15
2963
+ 15
2964
+ 21
2965
+ 1
2966
+ 1
2967
+ 20
2968
+ 0
2969
+ 20
2970
+ 1
2971
+ 49
2972
+ 0
2973
+ 2
2974
+ 9
2975
+ 26
2976
+ 1
2977
+ 33
2978
+ 8
2979
+ 27
2980
+ 1
2981
+ 11
2982
+ I
2983
+ 6
2984
+ I
2985
+ 2
2986
+ I
2987
+ 2
2988
+ I
2989
+ 2
2990
+ n
2991
+ p
2992
+ 1
2993
+ x
2994
+ 5
2995
+ gsub!
2996
+ p
2997
+ 3
2998
+ I
2999
+ 0
3000
+ I
3001
+ 9a
3002
+ I
3003
+ 1c
3004
+ x
3005
+ 94
3006
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3007
+ p
3008
+ 2
3009
+ x
3010
+ 4
3011
+ rule
3012
+ x
3013
+ 11
3014
+ replacement
3015
+ x
3016
+ 4
3017
+ each
3018
+ p
3019
+ 13
3020
+ I
3021
+ -1
3022
+ I
3023
+ 94
3024
+ I
3025
+ 0
3026
+ I
3027
+ 95
3028
+ I
3029
+ b
3030
+ I
3031
+ 97
3032
+ I
3033
+ 18
3034
+ I
3035
+ 98
3036
+ I
3037
+ 1c
3038
+ I
3039
+ 9a
3040
+ I
3041
+ 28
3042
+ I
3043
+ 9b
3044
+ I
3045
+ 2b
3046
+ x
3047
+ 94
3048
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3049
+ p
3050
+ 2
3051
+ x
3052
+ 4
3053
+ word
3054
+ x
3055
+ 6
3056
+ result
3057
+ x
3058
+ 8
3059
+ humanize
3060
+ M
3061
+ 1
3062
+ n
3063
+ n
3064
+ x
3065
+ 8
3066
+ humanize
3067
+ i
3068
+ 77
3069
+ 20
3070
+ 0
3071
+ 49
3072
+ 0
3073
+ 0
3074
+ 49
3075
+ 1
3076
+ 0
3077
+ 19
3078
+ 1
3079
+ 15
3080
+ 5
3081
+ 48
3082
+ 2
3083
+ 49
3084
+ 3
3085
+ 0
3086
+ 56
3087
+ 4
3088
+ 50
3089
+ 5
3090
+ 0
3091
+ 15
3092
+ 20
3093
+ 1
3094
+ 7
3095
+ 6
3096
+ 13
3097
+ 70
3098
+ 9
3099
+ 43
3100
+ 15
3101
+ 44
3102
+ 43
3103
+ 7
3104
+ 7
3105
+ 8
3106
+ 78
3107
+ 49
3108
+ 9
3109
+ 2
3110
+ 6
3111
+ 6
3112
+ 7
3113
+ 10
3114
+ 64
3115
+ 49
3116
+ 11
3117
+ 2
3118
+ 7
3119
+ 12
3120
+ 13
3121
+ 70
3122
+ 9
3123
+ 67
3124
+ 15
3125
+ 44
3126
+ 43
3127
+ 7
3128
+ 7
3129
+ 13
3130
+ 78
3131
+ 49
3132
+ 9
3133
+ 2
3134
+ 6
3135
+ 12
3136
+ 7
3137
+ 14
3138
+ 64
3139
+ 49
3140
+ 11
3141
+ 2
3142
+ 49
3143
+ 15
3144
+ 0
3145
+ 11
3146
+ I
3147
+ 6
3148
+ I
3149
+ 2
3150
+ I
3151
+ 1
3152
+ I
3153
+ 1
3154
+ n
3155
+ p
3156
+ 16
3157
+ x
3158
+ 4
3159
+ to_s
3160
+ x
3161
+ 3
3162
+ dup
3163
+ x
3164
+ 11
3165
+ inflections
3166
+ x
3167
+ 6
3168
+ humans
3169
+ M
3170
+ 1
3171
+ p
3172
+ 2
3173
+ x
3174
+ 9
3175
+ for_block
3176
+ t
3177
+ n
3178
+ x
3179
+ 8
3180
+ humanize
3181
+ i
3182
+ 28
3183
+ 58
3184
+ 37
3185
+ 19
3186
+ 0
3187
+ 15
3188
+ 37
3189
+ 19
3190
+ 1
3191
+ 15
3192
+ 15
3193
+ 21
3194
+ 1
3195
+ 1
3196
+ 20
3197
+ 0
3198
+ 20
3199
+ 1
3200
+ 49
3201
+ 0
3202
+ 2
3203
+ 9
3204
+ 26
3205
+ 1
3206
+ 33
3207
+ 8
3208
+ 27
3209
+ 1
3210
+ 11
3211
+ I
3212
+ 6
3213
+ I
3214
+ 2
3215
+ I
3216
+ 2
3217
+ I
3218
+ 2
3219
+ n
3220
+ p
3221
+ 1
3222
+ x
3223
+ 5
3224
+ gsub!
3225
+ p
3226
+ 3
3227
+ I
3228
+ 0
3229
+ I
3230
+ a8
3231
+ I
3232
+ 1c
3233
+ x
3234
+ 94
3235
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3236
+ p
3237
+ 2
3238
+ x
3239
+ 4
3240
+ rule
3241
+ x
3242
+ 11
3243
+ replacement
3244
+ x
3245
+ 4
3246
+ each
3247
+ n
3248
+ x
3249
+ 6
3250
+ Regexp
3251
+ s
3252
+ 4
3253
+ _id$
3254
+ x
3255
+ 3
3256
+ new
3257
+ s
3258
+ 0
3259
+
3260
+ x
3261
+ 4
3262
+ gsub
3263
+ n
3264
+ s
3265
+ 1
3266
+ _
3267
+ s
3268
+ 1
3269
+
3270
+ x
3271
+ 10
3272
+ capitalize
3273
+ p
3274
+ 9
3275
+ I
3276
+ -1
3277
+ I
3278
+ a5
3279
+ I
3280
+ 0
3281
+ I
3282
+ a6
3283
+ I
3284
+ b
3285
+ I
3286
+ a8
3287
+ I
3288
+ 17
3289
+ I
3290
+ a9
3291
+ I
3292
+ 4d
3293
+ x
3294
+ 94
3295
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3296
+ p
3297
+ 2
3298
+ x
3299
+ 31
3300
+ lower_case_and_underscored_word
3301
+ x
3302
+ 6
3303
+ result
3304
+ x
3305
+ 8
3306
+ titleize
3307
+ M
3308
+ 1
3309
+ n
3310
+ n
3311
+ x
3312
+ 8
3313
+ titleize
3314
+ i
3315
+ 36
3316
+ 5
3317
+ 5
3318
+ 20
3319
+ 0
3320
+ 47
3321
+ 49
3322
+ 0
3323
+ 1
3324
+ 47
3325
+ 49
3326
+ 1
3327
+ 1
3328
+ 7
3329
+ 2
3330
+ 13
3331
+ 70
3332
+ 9
3333
+ 30
3334
+ 15
3335
+ 44
3336
+ 43
3337
+ 3
3338
+ 7
3339
+ 4
3340
+ 78
3341
+ 49
3342
+ 5
3343
+ 2
3344
+ 6
3345
+ 2
3346
+ 56
3347
+ 6
3348
+ 50
3349
+ 7
3350
+ 1
3351
+ 11
3352
+ I
3353
+ 5
3354
+ I
3355
+ 1
3356
+ I
3357
+ 1
3358
+ I
3359
+ 1
3360
+ n
3361
+ p
3362
+ 8
3363
+ x
3364
+ 10
3365
+ underscore
3366
+ x
3367
+ 8
3368
+ humanize
3369
+ n
3370
+ x
3371
+ 6
3372
+ Regexp
3373
+ s
3374
+ 11
3375
+ \b('?[a-z])
3376
+ x
3377
+ 3
3378
+ new
3379
+ M
3380
+ 1
3381
+ p
3382
+ 2
3383
+ x
3384
+ 9
3385
+ for_block
3386
+ t
3387
+ n
3388
+ x
3389
+ 8
3390
+ titleize
3391
+ i
3392
+ 10
3393
+ 4
3394
+ 5
3395
+ 78
3396
+ 98
3397
+ 0
3398
+ 2
3399
+ 49
3400
+ 1
3401
+ 0
3402
+ 11
3403
+ I
3404
+ 3
3405
+ I
3406
+ 0
3407
+ I
3408
+ 0
3409
+ I
3410
+ 0
3411
+ I
3412
+ -2
3413
+ p
3414
+ 2
3415
+ x
3416
+ 24
3417
+ regexp_last_match_result
3418
+ x
3419
+ 10
3420
+ capitalize
3421
+ p
3422
+ 3
3423
+ I
3424
+ 0
3425
+ I
3426
+ b6
3427
+ I
3428
+ a
3429
+ x
3430
+ 94
3431
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3432
+ p
3433
+ 0
3434
+ x
3435
+ 4
3436
+ gsub
3437
+ p
3438
+ 5
3439
+ I
3440
+ -1
3441
+ I
3442
+ b5
3443
+ I
3444
+ 0
3445
+ I
3446
+ b6
3447
+ I
3448
+ 24
3449
+ x
3450
+ 94
3451
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3452
+ p
3453
+ 1
3454
+ x
3455
+ 4
3456
+ word
3457
+ x
3458
+ 8
3459
+ tableize
3460
+ M
3461
+ 1
3462
+ n
3463
+ n
3464
+ x
3465
+ 8
3466
+ tableize
3467
+ i
3468
+ 13
3469
+ 5
3470
+ 5
3471
+ 20
3472
+ 0
3473
+ 47
3474
+ 49
3475
+ 0
3476
+ 1
3477
+ 47
3478
+ 49
3479
+ 1
3480
+ 1
3481
+ 11
3482
+ I
3483
+ 4
3484
+ I
3485
+ 1
3486
+ I
3487
+ 1
3488
+ I
3489
+ 1
3490
+ n
3491
+ p
3492
+ 2
3493
+ x
3494
+ 10
3495
+ underscore
3496
+ x
3497
+ 9
3498
+ pluralize
3499
+ p
3500
+ 5
3501
+ I
3502
+ -1
3503
+ I
3504
+ c0
3505
+ I
3506
+ 0
3507
+ I
3508
+ c1
3509
+ I
3510
+ d
3511
+ x
3512
+ 94
3513
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3514
+ p
3515
+ 1
3516
+ x
3517
+ 10
3518
+ class_name
3519
+ x
3520
+ 8
3521
+ classify
3522
+ M
3523
+ 1
3524
+ n
3525
+ n
3526
+ x
3527
+ 8
3528
+ classify
3529
+ i
3530
+ 40
3531
+ 5
3532
+ 5
3533
+ 20
3534
+ 0
3535
+ 49
3536
+ 0
3537
+ 0
3538
+ 7
3539
+ 1
3540
+ 13
3541
+ 70
3542
+ 9
3543
+ 25
3544
+ 15
3545
+ 44
3546
+ 43
3547
+ 2
3548
+ 7
3549
+ 3
3550
+ 78
3551
+ 49
3552
+ 4
3553
+ 2
3554
+ 6
3555
+ 1
3556
+ 7
3557
+ 5
3558
+ 64
3559
+ 49
3560
+ 6
3561
+ 2
3562
+ 47
3563
+ 49
3564
+ 7
3565
+ 1
3566
+ 47
3567
+ 49
3568
+ 8
3569
+ 1
3570
+ 11
3571
+ I
3572
+ 7
3573
+ I
3574
+ 1
3575
+ I
3576
+ 1
3577
+ I
3578
+ 1
3579
+ n
3580
+ p
3581
+ 9
3582
+ x
3583
+ 4
3584
+ to_s
3585
+ n
3586
+ x
3587
+ 6
3588
+ Regexp
3589
+ s
3590
+ 4
3591
+ .*\.
3592
+ x
3593
+ 3
3594
+ new
3595
+ s
3596
+ 0
3597
+
3598
+ x
3599
+ 3
3600
+ sub
3601
+ x
3602
+ 11
3603
+ singularize
3604
+ x
3605
+ 8
3606
+ camelize
3607
+ p
3608
+ 5
3609
+ I
3610
+ -1
3611
+ I
3612
+ ce
3613
+ I
3614
+ 0
3615
+ I
3616
+ d0
3617
+ I
3618
+ 28
3619
+ x
3620
+ 94
3621
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3622
+ p
3623
+ 1
3624
+ x
3625
+ 10
3626
+ table_name
3627
+ p
3628
+ 17
3629
+ I
3630
+ 2
3631
+ I
3632
+ 12
3633
+ I
3634
+ 1d
3635
+ I
3636
+ 71
3637
+ I
3638
+ 2b
3639
+ I
3640
+ 81
3641
+ I
3642
+ 39
3643
+ I
3644
+ 94
3645
+ I
3646
+ 47
3647
+ I
3648
+ a5
3649
+ I
3650
+ 55
3651
+ I
3652
+ b5
3653
+ I
3654
+ 63
3655
+ I
3656
+ c0
3657
+ I
3658
+ 71
3659
+ I
3660
+ ce
3661
+ I
3662
+ 7f
3663
+ x
3664
+ 94
3665
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3666
+ p
3667
+ 0
3668
+ x
3669
+ 13
3670
+ attach_method
3671
+ p
3672
+ 3
3673
+ I
3674
+ 2
3675
+ I
3676
+ 2
3677
+ I
3678
+ 1c
3679
+ x
3680
+ 94
3681
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3682
+ p
3683
+ 0
3684
+ x
3685
+ 13
3686
+ attach_method
3687
+ p
3688
+ 3
3689
+ I
3690
+ 0
3691
+ I
3692
+ 1
3693
+ I
3694
+ 1c
3695
+ x
3696
+ 94
3697
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/inflector/inflections.rb
3698
+ p
3699
+ 0