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
@@ -2,8 +2,8 @@ module ActiveSupport
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 6
6
- PRE = nil
5
+ TINY = 7
6
+ PRE = "rc1"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
9
9
  end
@@ -0,0 +1,295 @@
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
+ 7
111
+ VERSION
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
+ 7
124
+ VERSION
125
+ i
126
+ 66
127
+ 5
128
+ 66
129
+ 65
130
+ 7
131
+ 0
132
+ 4
133
+ 3
134
+ 49
135
+ 1
136
+ 2
137
+ 15
138
+ 65
139
+ 7
140
+ 2
141
+ 78
142
+ 49
143
+ 1
144
+ 2
145
+ 15
146
+ 65
147
+ 7
148
+ 3
149
+ 4
150
+ 6
151
+ 49
152
+ 1
153
+ 2
154
+ 15
155
+ 65
156
+ 7
157
+ 4
158
+ 1
159
+ 49
160
+ 1
161
+ 2
162
+ 15
163
+ 65
164
+ 7
165
+ 5
166
+ 45
167
+ 0
168
+ 6
169
+ 45
170
+ 2
171
+ 7
172
+ 45
173
+ 3
174
+ 8
175
+ 45
176
+ 4
177
+ 9
178
+ 35
179
+ 4
180
+ 49
181
+ 10
182
+ 0
183
+ 7
184
+ 11
185
+ 64
186
+ 49
187
+ 12
188
+ 1
189
+ 49
190
+ 1
191
+ 2
192
+ 11
193
+ I
194
+ 6
195
+ I
196
+ 0
197
+ I
198
+ 0
199
+ I
200
+ 0
201
+ n
202
+ p
203
+ 13
204
+ x
205
+ 5
206
+ MAJOR
207
+ x
208
+ 9
209
+ const_set
210
+ x
211
+ 5
212
+ MINOR
213
+ x
214
+ 4
215
+ TINY
216
+ x
217
+ 3
218
+ PRE
219
+ x
220
+ 6
221
+ STRING
222
+ n
223
+ n
224
+ n
225
+ n
226
+ x
227
+ 7
228
+ compact
229
+ s
230
+ 1
231
+ .
232
+ x
233
+ 4
234
+ join
235
+ p
236
+ 11
237
+ I
238
+ 2
239
+ I
240
+ 3
241
+ I
242
+ b
243
+ I
244
+ 4
245
+ I
246
+ 13
247
+ I
248
+ 5
249
+ I
250
+ 1c
251
+ I
252
+ 6
253
+ I
254
+ 24
255
+ I
256
+ 8
257
+ I
258
+ 42
259
+ x
260
+ 80
261
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/version.rb
262
+ p
263
+ 0
264
+ x
265
+ 13
266
+ attach_method
267
+ p
268
+ 3
269
+ I
270
+ 2
271
+ I
272
+ 2
273
+ I
274
+ 1c
275
+ x
276
+ 80
277
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/version.rb
278
+ p
279
+ 0
280
+ x
281
+ 13
282
+ attach_method
283
+ p
284
+ 3
285
+ I
286
+ 0
287
+ I
288
+ 1
289
+ I
290
+ 1c
291
+ x
292
+ 80
293
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/version.rb
294
+ p
295
+ 0
@@ -0,0 +1,826 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 29
13
+ 99
14
+ 7
15
+ 0
16
+ 1
17
+ 65
18
+ 49
19
+ 1
20
+ 3
21
+ 13
22
+ 99
23
+ 12
24
+ 7
25
+ 2
26
+ 12
27
+ 7
28
+ 3
29
+ 12
30
+ 65
31
+ 12
32
+ 49
33
+ 4
34
+ 4
35
+ 15
36
+ 49
37
+ 2
38
+ 0
39
+ 15
40
+ 2
41
+ 11
42
+ I
43
+ 6
44
+ I
45
+ 0
46
+ I
47
+ 0
48
+ I
49
+ 0
50
+ n
51
+ p
52
+ 5
53
+ x
54
+ 8
55
+ NilClass
56
+ x
57
+ 10
58
+ open_class
59
+ x
60
+ 14
61
+ __class_init__
62
+ M
63
+ 1
64
+ n
65
+ n
66
+ x
67
+ 8
68
+ NilClass
69
+ i
70
+ 99
71
+ 5
72
+ 66
73
+ 65
74
+ 7
75
+ 0
76
+ 45
77
+ 1
78
+ 2
79
+ 13
80
+ 71
81
+ 3
82
+ 47
83
+ 9
84
+ 26
85
+ 47
86
+ 49
87
+ 4
88
+ 0
89
+ 13
90
+ 47
91
+ 49
92
+ 5
93
+ 0
94
+ 15
95
+ 8
96
+ 29
97
+ 49
98
+ 3
99
+ 0
100
+ 49
101
+ 6
102
+ 2
103
+ 15
104
+ 99
105
+ 7
106
+ 7
107
+ 7
108
+ 8
109
+ 65
110
+ 5
111
+ 49
112
+ 9
113
+ 4
114
+ 15
115
+ 5
116
+ 44
117
+ 43
118
+ 10
119
+ 47
120
+ 49
121
+ 7
122
+ 1
123
+ 15
124
+ 99
125
+ 7
126
+ 11
127
+ 7
128
+ 12
129
+ 65
130
+ 67
131
+ 49
132
+ 13
133
+ 0
134
+ 49
135
+ 14
136
+ 4
137
+ 15
138
+ 5
139
+ 48
140
+ 15
141
+ 15
142
+ 99
143
+ 7
144
+ 16
145
+ 7
146
+ 17
147
+ 65
148
+ 67
149
+ 49
150
+ 13
151
+ 0
152
+ 49
153
+ 14
154
+ 4
155
+ 15
156
+ 99
157
+ 7
158
+ 18
159
+ 7
160
+ 19
161
+ 65
162
+ 67
163
+ 49
164
+ 13
165
+ 0
166
+ 49
167
+ 14
168
+ 4
169
+ 11
170
+ I
171
+ 5
172
+ I
173
+ 0
174
+ I
175
+ 0
176
+ I
177
+ 0
178
+ n
179
+ p
180
+ 20
181
+ x
182
+ 16
183
+ METHOD_CLASS_MAP
184
+ x
185
+ 4
186
+ Hash
187
+ n
188
+ x
189
+ 3
190
+ new
191
+ x
192
+ 8
193
+ allocate
194
+ x
195
+ 10
196
+ initialize
197
+ x
198
+ 9
199
+ const_set
200
+ x
201
+ 10
202
+ add_whiner
203
+ M
204
+ 1
205
+ n
206
+ n
207
+ x
208
+ 10
209
+ add_whiner
210
+ i
211
+ 29
212
+ 20
213
+ 0
214
+ 49
215
+ 0
216
+ 0
217
+ 5
218
+ 48
219
+ 0
220
+ 82
221
+ 1
222
+ 19
223
+ 1
224
+ 15
225
+ 20
226
+ 0
227
+ 49
228
+ 2
229
+ 0
230
+ 19
231
+ 2
232
+ 15
233
+ 20
234
+ 1
235
+ 56
236
+ 3
237
+ 50
238
+ 4
239
+ 0
240
+ 11
241
+ I
242
+ 5
243
+ I
244
+ 3
245
+ I
246
+ 1
247
+ I
248
+ 1
249
+ n
250
+ p
251
+ 5
252
+ x
253
+ 23
254
+ public_instance_methods
255
+ x
256
+ 1
257
+ -
258
+ x
259
+ 4
260
+ name
261
+ M
262
+ 1
263
+ p
264
+ 2
265
+ x
266
+ 9
267
+ for_block
268
+ t
269
+ n
270
+ x
271
+ 10
272
+ add_whiner
273
+ i
274
+ 23
275
+ 57
276
+ 19
277
+ 0
278
+ 15
279
+ 45
280
+ 0
281
+ 1
282
+ 20
283
+ 0
284
+ 49
285
+ 2
286
+ 0
287
+ 21
288
+ 1
289
+ 2
290
+ 13
291
+ 18
292
+ 3
293
+ 49
294
+ 3
295
+ 2
296
+ 15
297
+ 11
298
+ I
299
+ 6
300
+ I
301
+ 1
302
+ I
303
+ 1
304
+ I
305
+ 1
306
+ n
307
+ p
308
+ 4
309
+ x
310
+ 16
311
+ METHOD_CLASS_MAP
312
+ n
313
+ x
314
+ 6
315
+ to_sym
316
+ x
317
+ 3
318
+ []=
319
+ p
320
+ 3
321
+ I
322
+ 0
323
+ I
324
+ 21
325
+ I
326
+ 17
327
+ x
328
+ 82
329
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/whiny_nil.rb
330
+ p
331
+ 1
332
+ x
333
+ 6
334
+ method
335
+ x
336
+ 4
337
+ each
338
+ p
339
+ 9
340
+ I
341
+ -1
342
+ I
343
+ 1e
344
+ I
345
+ 0
346
+ I
347
+ 1f
348
+ I
349
+ d
350
+ I
351
+ 20
352
+ I
353
+ 15
354
+ I
355
+ 21
356
+ I
357
+ 1d
358
+ x
359
+ 82
360
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/whiny_nil.rb
361
+ p
362
+ 3
363
+ x
364
+ 5
365
+ klass
366
+ x
367
+ 7
368
+ methods
369
+ x
370
+ 10
371
+ class_name
372
+ x
373
+ 13
374
+ attach_method
375
+ x
376
+ 5
377
+ Array
378
+ x
379
+ 2
380
+ id
381
+ M
382
+ 1
383
+ n
384
+ n
385
+ x
386
+ 2
387
+ id
388
+ i
389
+ 24
390
+ 5
391
+ 45
392
+ 0
393
+ 1
394
+ 7
395
+ 2
396
+ 5
397
+ 48
398
+ 3
399
+ 47
400
+ 101
401
+ 4
402
+ 7
403
+ 5
404
+ 63
405
+ 3
406
+ 5
407
+ 48
408
+ 6
409
+ 47
410
+ 49
411
+ 7
412
+ 3
413
+ 11
414
+ I
415
+ 5
416
+ I
417
+ 0
418
+ I
419
+ 0
420
+ I
421
+ 0
422
+ n
423
+ p
424
+ 8
425
+ x
426
+ 12
427
+ RuntimeError
428
+ n
429
+ s
430
+ 45
431
+ Called id for nil, which would mistakenly be
432
+ x
433
+ 9
434
+ object_id
435
+ x
436
+ 4
437
+ to_s
438
+ s
439
+ 53
440
+ -- if you really wanted the id of nil, use object_id
441
+ x
442
+ 6
443
+ caller
444
+ x
445
+ 5
446
+ raise
447
+ p
448
+ 5
449
+ I
450
+ -1
451
+ I
452
+ 27
453
+ I
454
+ 0
455
+ I
456
+ 28
457
+ I
458
+ 18
459
+ x
460
+ 82
461
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/whiny_nil.rb
462
+ p
463
+ 0
464
+ x
465
+ 17
466
+ method_visibility
467
+ x
468
+ 15
469
+ add_defn_method
470
+ x
471
+ 7
472
+ private
473
+ x
474
+ 14
475
+ method_missing
476
+ M
477
+ 1
478
+ n
479
+ n
480
+ x
481
+ 14
482
+ method_missing
483
+ i
484
+ 34
485
+ 95
486
+ 19
487
+ 2
488
+ 15
489
+ 45
490
+ 0
491
+ 1
492
+ 20
493
+ 0
494
+ 49
495
+ 2
496
+ 1
497
+ 19
498
+ 3
499
+ 9
500
+ 30
501
+ 5
502
+ 20
503
+ 3
504
+ 20
505
+ 0
506
+ 5
507
+ 48
508
+ 3
509
+ 47
510
+ 49
511
+ 4
512
+ 3
513
+ 8
514
+ 33
515
+ 54
516
+ 89
517
+ 5
518
+ 11
519
+ I
520
+ 8
521
+ I
522
+ 4
523
+ I
524
+ 1
525
+ I
526
+ 1
527
+ I
528
+ 1
529
+ p
530
+ 6
531
+ x
532
+ 16
533
+ METHOD_CLASS_MAP
534
+ n
535
+ x
536
+ 2
537
+ []
538
+ x
539
+ 6
540
+ caller
541
+ x
542
+ 21
543
+ raise_nil_warning_for
544
+ x
545
+ 14
546
+ method_missing
547
+ p
548
+ 9
549
+ I
550
+ -1
551
+ I
552
+ 2c
553
+ I
554
+ 4
555
+ I
556
+ 2d
557
+ I
558
+ 10
559
+ I
560
+ 2e
561
+ I
562
+ 1e
563
+ I
564
+ 30
565
+ I
566
+ 22
567
+ x
568
+ 82
569
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/whiny_nil.rb
570
+ p
571
+ 4
572
+ x
573
+ 6
574
+ method
575
+ x
576
+ 4
577
+ args
578
+ x
579
+ 5
580
+ block
581
+ x
582
+ 5
583
+ klass
584
+ x
585
+ 21
586
+ raise_nil_warning_for
587
+ M
588
+ 1
589
+ n
590
+ n
591
+ x
592
+ 21
593
+ raise_nil_warning_for
594
+ i
595
+ 96
596
+ 23
597
+ 0
598
+ 10
599
+ 8
600
+ 1
601
+ 19
602
+ 0
603
+ 15
604
+ 23
605
+ 1
606
+ 10
607
+ 16
608
+ 1
609
+ 19
610
+ 1
611
+ 15
612
+ 23
613
+ 2
614
+ 10
615
+ 24
616
+ 1
617
+ 19
618
+ 2
619
+ 15
620
+ 7
621
+ 0
622
+ 64
623
+ 19
624
+ 3
625
+ 15
626
+ 20
627
+ 0
628
+ 9
629
+ 52
630
+ 20
631
+ 3
632
+ 7
633
+ 1
634
+ 20
635
+ 0
636
+ 47
637
+ 101
638
+ 2
639
+ 7
640
+ 3
641
+ 63
642
+ 3
643
+ 49
644
+ 4
645
+ 1
646
+ 8
647
+ 53
648
+ 1
649
+ 15
650
+ 20
651
+ 1
652
+ 9
653
+ 74
654
+ 20
655
+ 3
656
+ 7
657
+ 5
658
+ 20
659
+ 1
660
+ 47
661
+ 101
662
+ 2
663
+ 63
664
+ 2
665
+ 49
666
+ 4
667
+ 1
668
+ 8
669
+ 75
670
+ 1
671
+ 15
672
+ 5
673
+ 45
674
+ 6
675
+ 7
676
+ 20
677
+ 3
678
+ 20
679
+ 2
680
+ 13
681
+ 10
682
+ 91
683
+ 15
684
+ 5
685
+ 48
686
+ 8
687
+ 47
688
+ 49
689
+ 9
690
+ 3
691
+ 11
692
+ I
693
+ 9
694
+ I
695
+ 4
696
+ I
697
+ 0
698
+ I
699
+ 3
700
+ n
701
+ p
702
+ 10
703
+ s
704
+ 48
705
+ You have a nil object when you didn't expect it!
706
+ s
707
+ 40
708
+
709
+ You might have expected an instance of
710
+ x
711
+ 4
712
+ to_s
713
+ s
714
+ 1
715
+ .
716
+ x
717
+ 2
718
+ <<
719
+ s
720
+ 41
721
+
722
+ The error occurred while evaluating nil.
723
+ x
724
+ 13
725
+ NoMethodError
726
+ n
727
+ x
728
+ 6
729
+ caller
730
+ x
731
+ 5
732
+ raise
733
+ p
734
+ 11
735
+ I
736
+ -1
737
+ I
738
+ 35
739
+ I
740
+ 18
741
+ I
742
+ 36
743
+ I
744
+ 1e
745
+ I
746
+ 37
747
+ I
748
+ 36
749
+ I
750
+ 38
751
+ I
752
+ 4c
753
+ I
754
+ 3a
755
+ I
756
+ 60
757
+ x
758
+ 82
759
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/whiny_nil.rb
760
+ p
761
+ 4
762
+ x
763
+ 10
764
+ class_name
765
+ x
766
+ 8
767
+ selector
768
+ x
769
+ 11
770
+ with_caller
771
+ x
772
+ 7
773
+ message
774
+ p
775
+ 15
776
+ I
777
+ 2
778
+ I
779
+ 1c
780
+ I
781
+ 21
782
+ I
783
+ 1e
784
+ I
785
+ 2c
786
+ I
787
+ 24
788
+ I
789
+ 35
790
+ I
791
+ 27
792
+ I
793
+ 43
794
+ I
795
+ 2b
796
+ I
797
+ 47
798
+ I
799
+ 2c
800
+ I
801
+ 55
802
+ I
803
+ 35
804
+ I
805
+ 63
806
+ x
807
+ 82
808
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/whiny_nil.rb
809
+ p
810
+ 0
811
+ x
812
+ 13
813
+ attach_method
814
+ p
815
+ 3
816
+ I
817
+ 0
818
+ I
819
+ 1b
820
+ I
821
+ 1d
822
+ x
823
+ 82
824
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/whiny_nil.rb
825
+ p
826
+ 0