aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/reloadable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/reloadable.rb')
-rw-r--r--activesupport/lib/active_support/reloadable.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/reloadable.rb b/activesupport/lib/active_support/reloadable.rb
index 179e04a0fe..c71b2fa4bd 100644
--- a/activesupport/lib/active_support/reloadable.rb
+++ b/activesupport/lib/active_support/reloadable.rb
@@ -3,7 +3,9 @@
module Reloadable
class << self
def included(base) #nodoc:
- if base.is_a?(Class) && ! base.respond_to?(:reloadable?)
+ raise TypeError, "Only Classes can be Reloadable!" unless base.is_a? Class
+
+ unless base.respond_to?(:reloadable?)
class << base
define_method(:reloadable?) { true }
end