module NeverBounce::CLI::Feature::BasicInitialize

Provide the basic method #initialize for the owner class. @see InstanceMethods#initialize

Public Class Methods

load(owner) click to toggle source

@param owner [Class] @return [nil]

# File lib/never_bounce/cli/feature/basic_initialize.rb, line 8
def self.load(owner)
  return if owner < InstanceMethods
  owner.send(:include, InstanceMethods)
end