aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/dependency_module.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/dependency_module.rb')
-rw-r--r--activesupport/lib/active_support/dependency_module.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/activesupport/lib/active_support/dependency_module.rb b/activesupport/lib/active_support/dependency_module.rb
deleted file mode 100644
index 6847c0f86a..0000000000
--- a/activesupport/lib/active_support/dependency_module.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-module ActiveSupport
- module DependencyModule
- def append_features(base)
- return false if base < self
- (@_dependencies ||= []).each { |dep| base.send(:include, dep) }
- super
- end
-
- def depends_on(*mods)
- mods.each do |mod|
- next if self < mod
- @_dependencies ||= []
- @_dependencies << mod
- end
- end
- end
-end