Flowdock
method

extended_by

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: Object
extended_by(#:nodoc:) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/core_ext/object/extending.rb, line 23
  def extended_by #:nodoc:
    ancestors = class << self; ancestors end
    ancestors.select { |mod| mod.class == Module } - [ Object, Kernel ]
  end
Register or log in to add new notes.