module Supertype

Allow a supertype to look up a class given the name of a subtype inheriting from this class

Public Class Methods

included(base) click to toggle source

Add class methods when this module is included @return [void]

# File lib/nose/util.rb, line 84
def self.included(base)
  base.extend ClassMethods
end