module NeverBounce::API::Feature::RequireAttr
Provide attribute validation method(s) 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/require_attr.rb, line 10 def self.load(owner) return if owner < InstanceMethods owner.send(:include, InstanceMethods) end