email_data 1605433987 → 1605483437
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/Gemfile.lock +3 -2
- data/README.md +13 -1
- data/VERSION +1 -1
- data/data/disposable_domains.txt +1 -0
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ee4f3cd6480023a786dddb8575eef1e905c483ae039fc28fd83a58801a10898
|
4
|
+
data.tar.gz: 00c365370cd541acbac7815975e7fb2bba3642b1a2fe67c9babd423fbbad2aa8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab4ee9e948f586672c4a6e1a54ef1923853ca29493e9926f61d4eb6c2b1c40e35e660957d28c74d99c7e0dc3b773f34c9bd4bb0267bfb3380fe82a6750f30434
|
7
|
+
data.tar.gz: 283ac7b4918b5fc74fb5edaca8a59af3ad0da8173eea5815b853fb2e46c9b2747585d5a46338e9d246a022c0ec40f446ea1450e0945fbb489d024ddd22ebf667
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
email_data (
|
4
|
+
email_data (1605483437)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -38,7 +38,8 @@ GEM
|
|
38
38
|
rake (13.0.1)
|
39
39
|
regexp_parser (1.8.2)
|
40
40
|
rexml (3.2.4)
|
41
|
-
root_domain (0.1.
|
41
|
+
root_domain (0.1.1)
|
42
|
+
email_data
|
42
43
|
simpleidn
|
43
44
|
rubocop (1.3.0)
|
44
45
|
parallel (~> 1.10)
|
data/README.md
CHANGED
@@ -110,6 +110,12 @@ class SetupEmailData < ActiveRecord::Migration[6.1]
|
|
110
110
|
|
111
111
|
add_index :tlds, :name, unique: true
|
112
112
|
|
113
|
+
create_table :slds do |t|
|
114
|
+
t.citext :name, null: false
|
115
|
+
end
|
116
|
+
|
117
|
+
add_index :slds, :name, unique: true
|
118
|
+
|
113
119
|
create_table :country_tlds do |t|
|
114
120
|
t.citext :name, null: false
|
115
121
|
end
|
@@ -139,6 +145,12 @@ class SetupEmailData < ActiveRecord::Migration[6.1]
|
|
139
145
|
end
|
140
146
|
|
141
147
|
add_index :roles, :name, unique: true
|
148
|
+
|
149
|
+
create_table :private_relays do |t|
|
150
|
+
t.citext :name, null: false
|
151
|
+
end
|
152
|
+
|
153
|
+
add_index :private_relays, :name, unique: true
|
142
154
|
end
|
143
155
|
end
|
144
156
|
```
|
@@ -244,7 +256,7 @@ like to add, please make a pull request against the files `data/manual/*.txt`.
|
|
244
256
|
- `data/manual/free_email_domains.txt`: only free email services must go here.
|
245
257
|
- `data/manual/roles.txt`: list of role-based user names like `info` or
|
246
258
|
`no-reply`.
|
247
|
-
- `data/manual/private_relays`: list of private relay services, like Apple's
|
259
|
+
- `data/manual/private_relays.txt`: list of private relay services, like Apple's
|
248
260
|
Hide My Email.
|
249
261
|
|
250
262
|
## Development
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
1605483437
|
data/data/disposable_domains.txt
CHANGED
@@ -10432,6 +10432,7 @@ alisverisistan.net
|
|
10432
10432
|
alitaj.com
|
10433
10433
|
alittle.website
|
10434
10434
|
alivance.com
|
10435
|
+
aliveinlosangeles.com
|
10435
10436
|
alivemail.cf
|
10436
10437
|
alivemail.ga
|
10437
10438
|
alivemail.gq
|
data/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fnando/email_data",
|
3
3
|
"description": "This project is a compilation of datasets related to emails. Includes disposable emails, disposable domains, and free email services.",
|
4
|
-
"version": "
|
4
|
+
"version": "1605483437.0.0",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|