Flowdock
extend_object(obj) public

No documentation

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

Hide source
# File lib/irb/extend-command.rb, line 179
    def self.extend_object(obj)
      unless (class << obj; ancestors; end).include?(EXCB)
        super
        for ali, com, flg in @ALIASES
          obj.install_alias_method(ali, com, flg)
        end
      end
    end
Register or log in to add new notes.