module NeverBounce::API::Feature::BasicInitialize

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

Public Class Methods

load(owner) click to toggle source

@param owner [Class] @return [nil]

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