diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-01 20:50:04 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-01 14:28:56 -0800 |
commit | 7f17b23aea3008e1d4ae01ef2713bf4555f29efe (patch) | |
tree | e80a68aeb9d926c6c9b5fb9854aa4bef00faf148 /activesupport/lib | |
parent | 4d2f0d2287a4fde4e6425814e85d812dd7c4b203 (diff) | |
download | rails-7f17b23aea3008e1d4ae01ef2713bf4555f29efe.tar.gz rails-7f17b23aea3008e1d4ae01ef2713bf4555f29efe.tar.bz2 rails-7f17b23aea3008e1d4ae01ef2713bf4555f29efe.zip |
extending.rb needs active_support/core_ext/class/removal because it uses reachable?
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/object/extending.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/extending.rb b/activesupport/lib/active_support/core_ext/object/extending.rb index de8121f274..7ac13d3d1a 100644 --- a/activesupport/lib/active_support/core_ext/object/extending.rb +++ b/activesupport/lib/active_support/core_ext/object/extending.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/class/removal' + class Class # Rubinius if defined?(Class.__subclasses__) |