valid_email2 4.0.4 → 4.0.6

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: 77cf14bcbfa5382570395a627f9d20a51b4806d8bf5f962678cf9e2fafb825d1
4
- data.tar.gz: 4a2bcbbc3bb9bfa7c7a1cddad54759b9b9ffc8aa314ff0fd21e314fb838eec28
3
+ metadata.gz: afb90257f63f378fa9e5ad744b1ca65ec0172f73c78e534656b1513c5e8aede6
4
+ data.tar.gz: d087cdefa7ea9c6cb9b6e64e814c5b1c1f8a78d86833998ad00b3c7e23f8c090
5
5
  SHA512:
6
- metadata.gz: e87d23b3f2c7f8a81b135b139d337e80cf07fe4320f4a8accc7ca62abfe5de53b18e7246237ae7923244b2179d6f20a16c732045458f1c0a8768ca375b2071f9
7
- data.tar.gz: fa557df498de2cecd4aa760c649776b921fd0484eb3eb1309e07c4525c161a7b15fcd1a09e830e5cd5d381882600f865147544c8cb54884fa75a8d544970d295
6
+ metadata.gz: 41c4f605b9aa4eeb4f99085e044475b8fb18f8d46a0f4267286bf9d096017fab8d24259195051e2ec783e6c1ece8d005d3495690a5f202c21a71d922ea69b169
7
+ data.tar.gz: 38c34de1f4dc828601f8fb05c711ce5ddfbcf6f7ea7a3de19c4620b696e3ca20c93ee061fad4a86b294b8715e7763f3b91f3a257328f972ab0b82ae7d15755f7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## Version 4.0.6
2
+ * Remove false positives https://github.com/micke/valid_email2/pull/200
3
+ * Remove unused default option https://github.com/micke/valid_email2/pull/201
4
+ * Pull new domains
5
+
6
+ ## Version 4.0.5
7
+ * Remove false positive mail2word.com
8
+ * Pull new domains
9
+
1
10
  ## Version 4.0.4
2
11
  * Add new domains https://github.com/micke/valid_email2/pull/196
3
12
  * 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
  ```