diff options
author | Rick Olson <technoweenie@gmail.com> | 2006-09-27 18:46:46 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2006-09-27 18:46:46 +0000 |
commit | d6925b14fa2039ba2523c69e09f2ccad15e9016f (patch) | |
tree | 419b4c35df5f84bbcc07d08587e40706519093a7 /activesupport/lib/active_support | |
parent | e537de00d806368f21cc22bde118fb90c1b6fe2d (diff) | |
download | rails-d6925b14fa2039ba2523c69e09f2ccad15e9016f.tar.gz rails-d6925b14fa2039ba2523c69e09f2ccad15e9016f.tar.bz2 rails-d6925b14fa2039ba2523c69e09f2ccad15e9016f.zip |
Don't undefine #class in OptionMerger [Rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5197 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/option_merger.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/option_merger.rb b/activesupport/lib/active_support/option_merger.rb index f944729bbc..e266d156ce 100644 --- a/activesupport/lib/active_support/option_merger.rb +++ b/activesupport/lib/active_support/option_merger.rb @@ -1,7 +1,7 @@ module ActiveSupport class OptionMerger #:nodoc: instance_methods.each do |method| - undef_method(method) if method !~ /^(__|instance_eval)/ + undef_method(method) if method !~ /^(__|instance_eval|class)/ end def initialize(context, options) |