module DvelpApiAuth module HelperMethods def present?(instance) instance && !instance.to_s.empty? end def blank?(instance) !present?(instance) end end end