module Qo::PatternMatchers::Branching

A module to allow the registration of braches to a pattern matcher.

@author baweaver @since 1.0.0

Public Class Methods

included(base) click to toggle source

On inclusion, extend the class including this module with branch registration methods.

@param base [Class]

Class including this module, passed from `include`
# File lib/qo/pattern_matchers/branching.rb, line 14
def self.included(base)
  base.extend(ClassMethods)
end