aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/object/metaclass.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/core_ext/object/metaclass.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/object/metaclass.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/metaclass.rb b/activesupport/lib/active_support/core_ext/object/metaclass.rb
deleted file mode 100644
index 4b36a243c9..0000000000
--- a/activesupport/lib/active_support/core_ext/object/metaclass.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-require 'active_support/deprecation'
-
-class Object
- # Get object's meta (ghost, eigenclass, singleton) class.
- #
- # Deprecated in favor of Object#singleton_class.
- def metaclass
- class << self
- self
- end
- end
-
- deprecate :metaclass => :singleton_class
-end