aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/reloadable.rb
diff options
context:
space:
mode:
authorNicholas Seckar <nseckar@gmail.com>2006-02-02 06:11:37 +0000
committerNicholas Seckar <nseckar@gmail.com>2006-02-02 06:11:37 +0000
commit52b04e8e7417719128e0882cdd4356882af6556a (patch)
tree4d3bd91a8898a174fc2df0aab67305becdd64626 /activesupport/lib/active_support/reloadable.rb
parent1bce58b31289362d62863ad0600b924858a11e34 (diff)
downloadrails-52b04e8e7417719128e0882cdd4356882af6556a.tar.gz
rails-52b04e8e7417719128e0882cdd4356882af6556a.tar.bz2
rails-52b04e8e7417719128e0882cdd4356882af6556a.zip
Reloadable::OnlySubclasses
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3522 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/reloadable.rb')
-rw-r--r--activesupport/lib/active_support/reloadable.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/activesupport/lib/active_support/reloadable.rb b/activesupport/lib/active_support/reloadable.rb
index 7749f0b165..179e04a0fe 100644
--- a/activesupport/lib/active_support/reloadable.rb
+++ b/activesupport/lib/active_support/reloadable.rb
@@ -15,13 +15,13 @@ module Reloadable
end
end
+ # Captures the common pattern where a base class should not be reloaded,
+ # but its subclasses should be.
module OnlySubclasses
- class << self
- def included(base) #nodoc:
- base.send :include, Reloadable
- (class << base; self; end;).class_eval do
- define_method(:reloadable?) { self != base }
- end
+ def self.included(base) #nodoc:
+ base.send :include, Reloadable
+ (class << base; self; end).send(:define_method, :reloadable?) do
+ base != self
end
end
end