module Subtype

Allow subclasses to return a string representing of the class, minus a common suffix also used in the superclass

Public Class Methods

included(base) click to toggle source

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

# File lib/nose/util.rb, line 112
def self.included(base)
  base.send :include, InstanceMethods
  base.extend ClassMethods
end