This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

singleton_method_added

        # BasicObject.singleton_method_added

(from ruby core)
---
    singleton_method_added(symbol)

---

Invoked as a callback whenever a singleton method is added to the
receiver.

    module Chatty
      def Chatty.singleton_method_added(id)
        puts "Adding #{id.id2name}"
      end
      def self.one()     end
      def two()          end
      def Chatty.three() end
    end

*produces:*

    Adding singleton_method_added
    Adding one
    Adding three


(from gem debug-1.7.1)
---
    singleton_method_added(mid;)

---



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.