valid_email2 4.0.4 → 4.0.5
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/config/disposable_email_domains.txt +2124 -1
- data/lib/valid_email2/version.rb +1 -1
- data/pull_mailchecker_emails.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8ccfc9cd993422b2126dca11205e9c3547579957fcb23c0b446ddaa976501faf
|
4
|
+
data.tar.gz: 8f746a9dc3009b6f71d7d0780a0a7c922cfed3911bffdfdf92c49d142fd7beba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acbf8fb6f1bf70c613b5883390a7a63d431902487c42267c87f929b77955fcbe37a746a339f493e3e37b3fe0e91ebfe7f08ef08a67120596319575c42d1c62a4
|
7
|
+
data.tar.gz: 479ade490d2732727608ede25e8e5758e6f738079b78e6eb768572f3375682156d3baab573ef16b30d73e6d6a1c764534f81c8441d061d15d79ff8d90606a961
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -88,7 +88,7 @@ To validate that email is not subaddressed:
|
|
88
88
|
validates :email, 'valid_email_2/email': { disallow_subaddressing: true }
|
89
89
|
```
|
90
90
|
|
91
|
-
To validate that email does not contain a dot before the @:
|
91
|
+
To validate that email does not contain a dot anywhere before the @:
|
92
92
|
```ruby
|
93
93
|
validates :email, 'valid_email_2/email': { disallow_dotted: true }
|
94
94
|
```
|