valid_email2 4.0.4 → 4.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77cf14bcbfa5382570395a627f9d20a51b4806d8bf5f962678cf9e2fafb825d1
4
- data.tar.gz: 4a2bcbbc3bb9bfa7c7a1cddad54759b9b9ffc8aa314ff0fd21e314fb838eec28
3
+ metadata.gz: 8ccfc9cd993422b2126dca11205e9c3547579957fcb23c0b446ddaa976501faf
4
+ data.tar.gz: 8f746a9dc3009b6f71d7d0780a0a7c922cfed3911bffdfdf92c49d142fd7beba
5
5
  SHA512:
6
- metadata.gz: e87d23b3f2c7f8a81b135b139d337e80cf07fe4320f4a8accc7ca62abfe5de53b18e7246237ae7923244b2179d6f20a16c732045458f1c0a8768ca375b2071f9
7
- data.tar.gz: fa557df498de2cecd4aa760c649776b921fd0484eb3eb1309e07c4525c161a7b15fcd1a09e830e5cd5d381882600f865147544c8cb54884fa75a8d544970d295
6
+ metadata.gz: acbf8fb6f1bf70c613b5883390a7a63d431902487c42267c87f929b77955fcbe37a746a339f493e3e37b3fe0e91ebfe7f08ef08a67120596319575c42d1c62a4
7
+ data.tar.gz: 479ade490d2732727608ede25e8e5758e6f738079b78e6eb768572f3375682156d3baab573ef16b30d73e6d6a1c764534f81c8441d061d15d79ff8d90606a961
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## Version 4.0.5
2
+ * Remove false positive mail2word.com
3
+ * Pull new domains
4
+
1
5
  ## Version 4.0.4
2
6
  * Add new domains https://github.com/micke/valid_email2/pull/196
3
7
  * Pull new domains
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
  ```