Skip to content

v1.0.1

Compare
Choose a tag to compare
@bestwebua bestwebua released this 08 Jun 17:54
· 214 commits to master since this release
c48766e

Implemented result validation type marker for domain list match check.

Truemail.validate('[email protected]')

#<Truemail::Validator:0x000055b8429f3490
  @result=#<struct Truemail::Validator::Result
    success=true,
    email="[email protected]",
    domain=nil,
    mail_servers=[],
    errors={},
    smtp_debug=nil>,
  @validation_type=:whitelist>

Truemail.validate('[email protected]')

#<Truemail::Validator:0x000023y8429f3493
  @result=#<struct Truemail::Validator::Result
    success=false,
    email="[email protected]",
    domain=nil,
    mail_servers=[],
    errors={},
    smtp_debug=nil>,
  @validation_type=:blacklist>
  1. Added result validation type marker to domain list match check
  2. Updated tests
  3. Updated documentation
  4. Updated wiki
  5. Updated gem version to 1.0.1