Module: ToProcInterface::Hooks::Extended Private

Included in:
ToProcInterface::Hooks
Defined in:
lib/to_proc_interface/hooks.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

The mixin hooks the #extend_object method that selects the proper extension.

Examples:

Usage

module Extension
  include ToProcInterface
  extend Hooks::Extended
end

class Example
  # @!parse extend ToProcInterface::Hooks::Inherited
  extend Extension
end