Parent

Caricature::RubyObjectDescriptor

Describes a ruby object.

Public Instance Methods

initialize_class_members_for(klass) click to toggle source

collects all the members that aren’t a member of Object.singleton_methods

# File lib/caricature/descriptor.rb, line 68
    def initialize_class_members_for(klass)
      @class_members += klass.methods(false).collect { |mn| MemberDescriptor.new(mn) }
    end
initialize_instance_members_for(klass) click to toggle source

collects all the members that are defined by this class

# File lib/caricature/descriptor.rb, line 63
    def initialize_instance_members_for(klass)
      @instance_members += klass.instance_methods(false).collect { |mn| MemberDescriptor.new(mn) }
    end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.