Sha256: d708cc1667bd036427d8d373b06ff36ff2de6bc9aebcaac0da7d902ee7987fdf
Contents?: true
Size: 333 Bytes
Versions: 38
Compression:
Stored size: 333 Bytes
Contents
# frozen_string_literal: true module Truemail module Validate class Smtp RESPONSE_ATTRS = %i[port_opened connection helo mailfrom rcptto errors].freeze Response = Struct.new(*RESPONSE_ATTRS, keyword_init: true) do def initialize(errors: {}, **args) super end end end end end
Version data entries
38 entries across 38 versions & 1 rubygems