truemail 1.9.2 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: caf982d3dd889a337ae95ab4d4fa79157964e02d83656016ecead8d0831c4d46
4
- data.tar.gz: 9b7ec050811c49072d18f7cd9e36229b982af742f24db3a031d4ab1e2e08f780
3
+ metadata.gz: 51df5b3fdb1b14899fba11d4d5cfc28f52396b85e03a653439c1f3b5616c6804
4
+ data.tar.gz: 927ec7dfd5f30a6b9339a587bac21db11c127b9a97074942d4a9d7c363d7ea87
5
5
  SHA512:
6
- metadata.gz: d8991eb0d33e2aaff25fdbe9fc95b45e8ee6e0c2661b9c82e622eca182f22570b01f27848b60353bf1ce70419c94cbe23cd51871872e0f92f624676d8a0c317c
7
- data.tar.gz: 7b8e1b24a90019bf21cb1534f64962ba8b68fe8fd6734a564d57c69fbf483c8e35a14bfd35317c58023f6f54616cad591439ac6eddef878604522d929dd6e42a
6
+ metadata.gz: 45d7f94b891fc7d70f488147761ff1de9389435abfda562306c75a401c2a0576cad744d1d607777c826c74a4d1b0575a13ef38745d8737f10a426d8ff80c2d50
7
+ data.tar.gz: 21ba52447572ae156611681cd5a14e279e834030e0aa9e8c143f06dda68069eb1016cbed78ad912ba773dc643d89b58bc4645b052ffb655534e31055ee911b2f
@@ -3,7 +3,7 @@ defaults: &defaults
3
3
  docker:
4
4
  - image: circleci/ruby:2.5.0-node
5
5
  environment:
6
- CC_TEST_REPORTER_ID: a98d23d6d916932ae11dbe5df36dee070173cbe376b68758901dcc289e098979
6
+ CC_TEST_REPORTER_ID: 693272a1328521f6f7c09d7ffd419b21c00410da26e98e94c687fdd38b26e2cb
7
7
 
8
8
  references:
9
9
  restore_bundle_cache: &restore_bundle_cache
@@ -3,9 +3,9 @@
3
3
  ### New Issue Checklist
4
4
 
5
5
  - [ ] I have updated truemail to the latest version
6
- - [ ] I have read the [Contribution Guidelines](https://github.com/rubygarage/truemail/blob/master/CONTRIBUTING.md)
6
+ - [ ] I have read the [Contribution Guidelines](https://github.com/truemail-rb/truemail/blob/master/CONTRIBUTING.md)
7
7
  - [ ] I have read the [documentation](https://truemail-rb.org/truemail-gem)
8
- - [ ] I have searched for [existing GitHub issues](https://github.com/rubygarage/truemail/issues)
8
+ - [ ] I have searched for [existing GitHub issues](https://github.com/truemail-rb/truemail/issues)
9
9
 
10
10
  ### Issue Description
11
11
  <!-- Please include what's happening, expected behavior, and any relevant code samples -->
@@ -40,7 +40,7 @@
40
40
  - [ ] My code follows the code style of this project
41
41
  - [ ] My change requires a change to the documentation
42
42
  - [ ] I have updated the documentation accordingly
43
- - [ ] I have read the [**CONTRIBUTING** document](https://github.com/rubygarage/truemail/blob/master/CONTRIBUTING.md)
43
+ - [ ] I have read the [**CONTRIBUTING** document](https://github.com/truemail-rb/truemail/blob/master/CONTRIBUTING.md)
44
44
  - [ ] I have added tests to cover my changes
45
45
  - [ ] I have run `bundle exec rspec` from the root directory to see all new and existing tests pass
46
46
  - [ ] I have run `rubocop` and `reek` to ensure the code style is valid
@@ -2,6 +2,30 @@
2
2
 
3
3
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
4
 
5
+ ## [2.0.0] - 2020.10.19
6
+
7
+ ### Fixed
8
+
9
+ SMTP connection errors: invalid `HELO` hostname (`localhost`), duplicate `HELO` (`verifier domain`).
10
+
11
+ ### Changed
12
+
13
+ - Updated `Truemail::Validate::Smtp::Request#run`
14
+ - Updated `Truemail::Validate::Smtp::Request#session_data`
15
+ - Updated `Truemail::Validate::Smtp::Response`
16
+
17
+ Now `helo` is a `Boolean` instead of `Net::SMTP::Response` instance. It was changed because `helo` is sending during SMTP-session initializing (`Net::SMTP.new.start`), and `helo` is always `true` if session up is okay. Also `hello` response won't logged as error if it happens. Example of `Truemail::Validate::Smtp::Response` instance from 1.9.3 version.
18
+
19
+ ```ruby
20
+ #<struct Truemail::Validate::Smtp::Response:0x00007fa74704cd10
21
+ port_opened=true,
22
+ connection=true,
23
+ helo=true, # Returns Boolean instead of Net::SMTP::Response instance
24
+ mailfrom=false,
25
+ rcptto=nil,
26
+ errors={:mailfrom=>"server response timeout"}>
27
+ ```
28
+
5
29
  ## [1.9.2] - 2020.10.02
6
30
 
7
31
  ### Added
@@ -380,7 +404,7 @@ Truemail.validate('email@domain.com', with: :regex)
380
404
 
381
405
  ### Added
382
406
 
383
- - Configurable default validation type, [issue details](https://github.com/rubygarage/truemail/issues/48)
407
+ - Configurable default validation type, [issue details](https://github.com/truemail-rb/truemail/issues/48)
384
408
 
385
409
  You can predefine default validation type for ```Truemail.validate('email@email.com')``` call without with-parameter. Available validation types: ```:regex```, ```:mx```, ```:smtp```. By default validation type still remains ```:smtp```
386
410
 
@@ -498,7 +522,7 @@ Truemail.configuration.validation_type_for = { 'somedomain.com' => :skip }
498
522
 
499
523
  ### Added
500
524
 
501
- - SMTP error body configurable option, [issue details](https://github.com/rubygarage/truemail/issues/19)
525
+ - SMTP error body configurable option, [issue details](https://github.com/truemail-rb/truemail/issues/19)
502
526
 
503
527
  ### Changed
504
528
 
@@ -515,11 +539,11 @@ Truemail.configuration.validation_type_for = { 'somedomain.com' => :skip }
515
539
 
516
540
  ### Added
517
541
 
518
- - Reverse trace, [issue details](https://github.com/rubygarage/truemail/issues/18)
542
+ - Reverse trace, [issue details](https://github.com/truemail-rb/truemail/issues/18)
519
543
 
520
544
  ### Fixed
521
545
 
522
- - Behaviour of current host address resolver, [issue details](https://github.com/rubygarage/truemail/issues/18)
546
+ - Behaviour of current host address resolver, [issue details](https://github.com/truemail-rb/truemail/issues/18)
523
547
 
524
548
  ### Changed
525
549
 
@@ -530,7 +554,7 @@ Truemail.configuration.validation_type_for = { 'somedomain.com' => :skip }
530
554
 
531
555
  ### Added
532
556
 
533
- - PTR record audit, [issue details](https://github.com/rubygarage/truemail/issues/18)
557
+ - PTR record audit, [issue details](https://github.com/truemail-rb/truemail/issues/18)
534
558
 
535
559
  ### Changed
536
560
 
@@ -541,12 +565,12 @@ Truemail.configuration.validation_type_for = { 'somedomain.com' => :skip }
541
565
 
542
566
  ### Added
543
567
 
544
- - MX gem logic with [RFC 7505](https://tools.ietf.org/html/rfc7505), null MX record supporting, [issue details](https://github.com/rubygarage/truemail/issues/27)
568
+ - MX gem logic with [RFC 7505](https://tools.ietf.org/html/rfc7505), null MX record supporting, [issue details](https://github.com/truemail-rb/truemail/issues/27)
545
569
  - [Contributing guideline](CONTRIBUTING.md)
546
570
 
547
571
  ### Fixed
548
572
 
549
- - Multihomed MX records supporting, [issue details](https://github.com/rubygarage/truemail/issues/28)
573
+ - Multihomed MX records supporting, [issue details](https://github.com/truemail-rb/truemail/issues/28)
550
574
 
551
575
  ### Changed
552
576
 
@@ -569,11 +593,11 @@ Truemail.configuration.validation_type_for = { 'somedomain.com' => :skip }
569
593
 
570
594
  ### Added
571
595
 
572
- - Checking A record presence if ```MX``` and ```CNAME``` records not exist, [issue details](https://github.com/rubygarage/truemail/issues/10)
573
- - Handling of ```CNAME``` records, [issue details](https://github.com/rubygarage/truemail/issues/11)
574
- - Checking A record if ```MX``` and ```CNAME``` records not found, [issue details](https://github.com/rubygarage/truemail/issues/12)
575
- - Supporting of multihomed MX records, conversion host names to ips, [issue details](https://github.com/rubygarage/truemail/issues/17)
576
- - Timeout configuration for DNS resolver, [issue details](https://github.com/rubygarage/truemail/issues/13)
596
+ - Checking A record presence if ```MX``` and ```CNAME``` records not exist, [issue details](https://github.com/truemail-rb/truemail/issues/10)
597
+ - Handling of ```CNAME``` records, [issue details](https://github.com/truemail-rb/truemail/issues/11)
598
+ - Checking A record if ```MX``` and ```CNAME``` records not found, [issue details](https://github.com/truemail-rb/truemail/issues/12)
599
+ - Supporting of multihomed MX records, conversion host names to ips, [issue details](https://github.com/truemail-rb/truemail/issues/17)
600
+ - Timeout configuration for DNS resolver, [issue details](https://github.com/truemail-rb/truemail/issues/13)
577
601
  - ```.valid?``` helper
578
602
 
579
603
  ### Changed
@@ -589,12 +613,12 @@ Truemail.configuration.validation_type_for = { 'somedomain.com' => :skip }
589
613
 
590
614
  ### Fixed
591
615
 
592
- - Default ```REGEX_EMAIL_PATTERN```, [issue details](https://github.com/rubygarage/truemail/issues/7)
616
+ - Default ```REGEX_EMAIL_PATTERN```, [issue details](https://github.com/truemail-rb/truemail/issues/7)
593
617
  * local part of address can't start with a dot or special symbol
594
618
  * local part of address can include ```+``` symbol
595
- - Default ```REGEX_DOMAIN_PATTERN```, [issue details](https://github.com/rubygarage/truemail/issues/8)
619
+ - Default ```REGEX_DOMAIN_PATTERN```, [issue details](https://github.com/truemail-rb/truemail/issues/8)
596
620
  * TLD size increased up to 63 characters
597
- - Case sensitive domain names, [issue details](https://github.com/rubygarage/truemail/issues/9)
621
+ - Case sensitive domain names, [issue details](https://github.com/truemail-rb/truemail/issues/9)
598
622
 
599
623
  ### Changed
600
624
 
@@ -641,10 +665,7 @@ Truemail.validate('email@example.com')
641
665
  #<struct Truemail::Validate::Smtp::Response
642
666
  port_opened=true,
643
667
  connection=false,
644
- helo=
645
- #<Net::SMTP::Response:0x0000000002c934c8
646
- @status="250",
647
- @string="250 mx1.example.com\n">,
668
+ helo=true,
648
669
  mailfrom=false,
649
670
  rcptto=nil,
650
671
  errors={:mailfrom=>"554 5.7.1 Client host blocked\n", :connection=>"server dropped connection after response"}>>,]>,
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- truemail (1.9.2)
4
+ truemail (2.0.0)
5
5
  simpleidn (~> 0.1.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- ![Truemail - configurable framework agnostic plain Ruby email validator](https://truemail-rb.org/assets/images/truemail_logo.png)
1
+ # ![Truemail - configurable framework agnostic plain Ruby email validator](https://truemail-rb.org/assets/images/truemail_logo.png)
2
2
 
3
- [![Maintainability](https://api.codeclimate.com/v1/badges/657aa241399927dcd2e2/maintainability)](https://codeclimate.com/github/rubygarage/truemail/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/657aa241399927dcd2e2/test_coverage)](https://codeclimate.com/github/rubygarage/truemail/test_coverage) [![CircleCI](https://circleci.com/gh/rubygarage/truemail/tree/master.svg?style=svg)](https://circleci.com/gh/rubygarage/truemail/tree/master) [![Gem Version](https://badge.fury.io/rb/truemail.svg)](https://badge.fury.io/rb/truemail) [![Downloads](https://img.shields.io/gem/dt/truemail.svg?colorA=004d99&colorB=0073e6)](https://rubygems.org/gems/truemail) [![Gitter](https://badges.gitter.im/truemail-rb/community.svg)](https://gitter.im/truemail-rb/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)
3
+ [![Maintainability](https://api.codeclimate.com/v1/badges/0fea6d2e64d78d66b149/maintainability)](https://codeclimate.com/github/truemail-rb/truemail/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/0fea6d2e64d78d66b149/test_coverage)](https://codeclimate.com/github/truemail-rb/truemail/test_coverage) [![CircleCI](https://circleci.com/gh/truemail-rb/truemail/tree/develop.svg?style=svg)](https://circleci.com/gh/truemail-rb/truemail/tree/develop) [![Gem Version](https://badge.fury.io/rb/truemail.svg)](https://badge.fury.io/rb/truemail) [![Downloads](https://img.shields.io/gem/dt/truemail.svg?colorA=004d99&colorB=0073e6)](https://rubygems.org/gems/truemail) [![Gitter](https://badges.gitter.im/truemail-rb/community.svg)](https://gitter.im/truemail-rb/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)
4
4
 
5
5
  Configurable framework agnostic plain Ruby email validator. Verify email via Regex, DNS and SMTP. Be sure that email address valid and exists.
6
6
 
@@ -127,7 +127,7 @@ You can use global gem configuration or custom independent configuration. Availa
127
127
 
128
128
  #### Setting global configuration
129
129
 
130
- To have an access for ```Truemail.configuration``` and gem configuration features, you must configure it first as in the example below:
130
+ To have an access for `Truemail.configuration` and gem configuration features, you must configure it first as in the example below:
131
131
 
132
132
  ```ruby
133
133
  require 'truemail'
@@ -289,11 +289,12 @@ Please note, you should have global or custom configuration for use Truemail gem
289
289
 
290
290
  #### Whitelist/Blacklist check
291
291
 
292
- Whitelist/Blacklist check is zero validation level. You can define white and black list domains. It means that validation of email which contains whitelisted domain always will return ```true```, and for blacklisted domain will return ```false```.
292
+ Whitelist/Blacklist check is zero validation level. You can define white and black list domains. It means that validation of email which contains whitelisted domain always will return `true`, and for blacklisted domain will return `false`.
293
293
 
294
- Please note, other validations will not processed even if it was defined in ```validation_type_for```.
294
+ Please note, other validations will not processed even if it was defined in `validation_type_for`.
295
295
 
296
296
  **Sequence of domain list check:**
297
+
297
298
  1. Whitelist check
298
299
  2. Whitelist validation check
299
300
  3. Blacklist check
@@ -356,8 +357,7 @@ Truemail.configure do |config|
356
357
  end
357
358
  ```
358
359
 
359
- When email domain in whitelist and ```whitelist_validation``` is sets equal to ```true``` validation type will be passed to other validators.
360
- Validation of email which not contains whitelisted domain always will return ```false```.
360
+ When email domain in whitelist and `whitelist_validation` is sets equal to `true` validation type will be passed to other validators. Validation of email which not contains whitelisted domain always will return `false`.
361
361
 
362
362
  ###### Email has whitelisted domain
363
363
 
@@ -459,7 +459,7 @@ Truemail.validate('email@black-domain.com')
459
459
 
460
460
  ##### Duplication case
461
461
 
462
- Validation result for this email returns ```true```, because it was found in whitelisted domains list first. Also ```validation_type``` for this case will be redefined.
462
+ Validation result for this email returns `true`, because it was found in whitelisted domains list first. Also `validation_type` for this case will be redefined.
463
463
 
464
464
  ```ruby
465
465
  Truemail.validate('email@somedomain.com')
@@ -591,7 +591,7 @@ In fact it's DNS validation because it checks not MX records only. DNS validatio
591
591
  [Whitelist/Blacklist] -> [Regex validation] -> [MX validation]
592
592
  ```
593
593
 
594
- Please note, Truemail MX validator [not performs](https://github.com/rubygarage/truemail/issues/26) strict compliance of the [RFC 5321](https://tools.ietf.org/html/rfc5321#section-5) standard for best validation outcome.
594
+ Please note, Truemail MX validator [not performs](https://github.com/truemail-rb/truemail/issues/26) strict compliance of the [RFC 5321](https://tools.ietf.org/html/rfc5321#section-5) standard for best validation outcome.
595
595
 
596
596
  ##### RFC MX lookup flow
597
597
 
@@ -688,13 +688,13 @@ SMTP validation is a final, third validation level. This type of validation trie
688
688
  [Whitelist/Blacklist] -> [Regex validation] -> [MX validation] -> [SMTP validation]
689
689
  ```
690
690
 
691
- If total count of MX servers is equal to one, ```Truemail::Smtp``` validator will use value from ```Truemail.configuration.connection_attempts``` as connection attempts. By default it's equal 2.
691
+ If total count of MX servers is equal to one, `Truemail::Smtp` validator will use value from `Truemail.configuration.connection_attempts` as connection attempts. By default it's equal `2`.
692
692
 
693
693
  By default, you don't need pass with-parameter to use it. Example of usage is specified below:
694
694
 
695
695
  ##### SMTP safe check disabled
696
696
 
697
- With ```smtp_safe_check = false```
697
+ With `smtp_safe_check = false`
698
698
 
699
699
  ```ruby
700
700
  require 'truemail'
@@ -757,10 +757,7 @@ Truemail.validate('email@example.com')
757
757
  #<struct Truemail::Validate::Smtp::Response
758
758
  port_opened=true,
759
759
  connection=true,
760
- helo=
761
- #<Net::SMTP::Response:0x0000000002d5aca8
762
- @status="250",
763
- @string="250 127.0.1.1 Hello example.com\n">,
760
+ helo=true,
764
761
  mailfrom=
765
762
  #<Net::SMTP::Response:0x0000000002d5a618
766
763
  @status="250",
@@ -788,7 +785,7 @@ Truemail.validate('email@example.com')
788
785
 
789
786
  ##### SMTP safe check enabled
790
787
 
791
- With ```smtp_safe_check = true```
788
+ With `smtp_safe_check = true`
792
789
 
793
790
  ```ruby
794
791
  require 'truemail'
@@ -824,10 +821,7 @@ Truemail.validate('email@example.com')
824
821
  #<struct Truemail::Validate::Smtp::Response
825
822
  port_opened=true,
826
823
  connection=false,
827
- helo=
828
- #<Net::SMTP::Response:0x0000000002c934c8
829
- @status="250",
830
- @string="250 127.0.1.1\n">,
824
+ helo=true,
831
825
  mailfrom=false,
832
826
  rcptto=nil,
833
827
  errors={:mailfrom=>"554 5.7.1 Client host blocked\n", :connection=>"server dropped connection after response"}>>,]>,
@@ -873,10 +867,7 @@ Truemail.validate('email@example.com')
873
867
  #<struct Truemail::Validate::Smtp::Response
874
868
  port_opened=true,
875
869
  connection=true,
876
- helo=
877
- #<Net::SMTP::Response:0x0000000002d5aca8
878
- @status="250",
879
- @string="250 127.0.1.1 Hello example.com\n">,
870
+ helo=true,
880
871
  mailfrom=#<Net::SMTP::Response:0x0000000002d5a618 @status="250", @string="250 OK\n">,
881
872
  rcptto=false,
882
873
  errors={:rcptto=>"550 User not found\n"}>>]>,
@@ -1178,7 +1169,7 @@ All Truemail solutions: https://truemail-rb.org
1178
1169
 
1179
1170
  ## Contributing
1180
1171
 
1181
- Bug reports and pull requests are welcome on GitHub at https://github.com/rubygarage/truemail. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. Please check the [open tikets](https://github.com/rubygarage/truemail/issues). Be shure to follow Contributor Code of Conduct below and our [Contributing Guidelines](CONTRIBUTING.md).
1172
+ Bug reports and pull requests are welcome on GitHub at https://github.com/truemail-rb/truemail. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. Please check the [open tikets](https://github.com/truemail-rb/truemail/issues). Be shure to follow Contributor Code of Conduct below and our [Contributing Guidelines](CONTRIBUTING.md).
1182
1173
 
1183
1174
  ## License
1184
1175
 
@@ -1190,8 +1181,8 @@ Everyone interacting in the Truemail project’s codebases, issue trackers, chat
1190
1181
 
1191
1182
  ## Credits
1192
1183
 
1193
- - [The Contributors](https://github.com/rubygarage/truemail/graphs/contributors) for code and awesome suggestions
1194
- - [The Stargazers](https://github.com/rubygarage/truemail/stargazers) for showing their support
1184
+ - [The Contributors](https://github.com/truemail-rb/truemail/graphs/contributors) for code and awesome suggestions
1185
+ - [The Stargazers](https://github.com/truemail-rb/truemail/stargazers) for showing their support
1195
1186
 
1196
1187
  ## Versioning
1197
1188
 
@@ -31,8 +31,8 @@ module Truemail
31
31
  end
32
32
 
33
33
  def run
34
- session.start do |smtp_request|
35
- response.connection = true
34
+ session.start(configuration.verifier_domain) do |smtp_request|
35
+ response.connection = response.helo = true
36
36
  smtp_handshakes(smtp_request, response)
37
37
  end
38
38
  rescue => error
@@ -83,7 +83,6 @@ module Truemail
83
83
 
84
84
  def session_data
85
85
  {
86
- helo: configuration.verifier_domain,
87
86
  mailfrom: configuration.verifier_email,
88
87
  rcptto: email
89
88
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Truemail
4
- VERSION = '1.9.2'
4
+ VERSION = '2.0.0'
5
5
  end
@@ -13,15 +13,15 @@ Gem::Specification.new do |spec|
13
13
  spec.summary = %(truemail)
14
14
  spec.description = %(Configurable framework agnostic plain Ruby email validator. Verify email via Regex, DNS and SMTP.)
15
15
 
16
- spec.homepage = 'https://github.com/rubygarage/truemail'
16
+ spec.homepage = 'https://github.com/truemail-rb/truemail'
17
17
  spec.license = 'MIT'
18
18
 
19
19
  spec.metadata = {
20
20
  'homepage_uri' => 'https://truemail-rb.org',
21
- 'changelog_uri' => 'https://github.com/rubygarage/truemail/blob/master/CHANGELOG.md',
22
- 'source_code_uri' => 'https://github.com/rubygarage/truemail',
21
+ 'changelog_uri' => 'https://github.com/truemail-rb/truemail/blob/master/CHANGELOG.md',
22
+ 'source_code_uri' => 'https://github.com/truemail-rb/truemail',
23
23
  'documentation_uri' => 'https://truemail-rb.org/truemail-gem',
24
- 'bug_tracker_uri' => 'https://github.com/rubygarage/truemail/issues'
24
+ 'bug_tracker_uri' => 'https://github.com/truemail-rb/truemail/issues'
25
25
  }
26
26
 
27
27
  spec.required_ruby_version = '>= 2.5.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: truemail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.2
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladislav Trotsenko
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-02 00:00:00.000000000 Z
11
+ date: 2020-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simpleidn
@@ -315,15 +315,15 @@ files:
315
315
  - lib/truemail/worker.rb
316
316
  - lib/truemail/wrapper.rb
317
317
  - truemail.gemspec
318
- homepage: https://github.com/rubygarage/truemail
318
+ homepage: https://github.com/truemail-rb/truemail
319
319
  licenses:
320
320
  - MIT
321
321
  metadata:
322
322
  homepage_uri: https://truemail-rb.org
323
- changelog_uri: https://github.com/rubygarage/truemail/blob/master/CHANGELOG.md
324
- source_code_uri: https://github.com/rubygarage/truemail
323
+ changelog_uri: https://github.com/truemail-rb/truemail/blob/master/CHANGELOG.md
324
+ source_code_uri: https://github.com/truemail-rb/truemail
325
325
  documentation_uri: https://truemail-rb.org/truemail-gem
326
- bug_tracker_uri: https://github.com/rubygarage/truemail/issues
326
+ bug_tracker_uri: https://github.com/truemail-rb/truemail/issues
327
327
  post_install_message:
328
328
  rdoc_options: []
329
329
  require_paths: