module NeverBounce::CLI::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/cli/feature/require_attr.rb, line 8 def self.load(owner) return if owner < InstanceMethods owner.send(:include, InstanceMethods) end