email_data 1604799858 → 1604907377
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 +2 -2
- data/README.md +11 -2
- data/VERSION +1 -1
- data/data/disposable_domains.txt +1 -0
- data/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63429f97483aed55d56a256b2132a18ce6d352be1e3bc57bcf41c975b7f74020
|
4
|
+
data.tar.gz: 65f4750c6ff5766bbe66efc11339c44f6837561d0864202a6e54970bdd9c9e22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45d0b566a2f9a1b843828fe1a2139f72f0f56b770357121f8041588b61ffcb7f1b45c073bdb565dbc60c01939ee5032db54675d2d77c4bea99f1380047c1e080
|
7
|
+
data.tar.gz: cc8efb3365fd0b0851e941d1da92b3f3ab013b8f5e98a43eaf6aaf0957fa7a340a5df203427baf6926b60ea9cd310e3defa82e10b0cdf8811279951baa55ee90
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
email_data (
|
4
|
+
email_data (1604907377)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -60,7 +60,7 @@ GEM
|
|
60
60
|
simpleidn (0.1.1)
|
61
61
|
unf (~> 0.1.4)
|
62
62
|
thread_safe (0.3.6)
|
63
|
-
tzinfo (1.2.
|
63
|
+
tzinfo (1.2.8)
|
64
64
|
thread_safe (~> 0.1)
|
65
65
|
unf (0.1.4)
|
66
66
|
unf_ext
|
data/README.md
CHANGED
@@ -121,6 +121,12 @@ class SetupEmailData < ActiveRecord::Migration[6.1]
|
|
121
121
|
end
|
122
122
|
|
123
123
|
add_index :free_email_domains, :name, unique: true
|
124
|
+
|
125
|
+
create_table :roles do |t|
|
126
|
+
t.citext :name, null: false
|
127
|
+
end
|
128
|
+
|
129
|
+
add_index :roles, :name, unique: true
|
124
130
|
end
|
125
131
|
end
|
126
132
|
```
|
@@ -153,6 +159,7 @@ COPY country_tlds (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/em
|
|
153
159
|
COPY disposable_emails (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/disposable_emails.txt';
|
154
160
|
COPY disposable_domains (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/disposable_domains.txt';
|
155
161
|
COPY free_email_domains (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/free_email_domains.txt';
|
162
|
+
COPY roles (name) FROM '/usr/local/ruby/2.7.1/lib/ruby/gems/2.7.0/gems/email_data-1601479967/data/roles.txt';
|
156
163
|
```
|
157
164
|
|
158
165
|
Alternatively, you could create a migrate that executes that same command; given
|
@@ -178,6 +185,7 @@ class LoadEmailData < ActiveRecord::Migration[6.1]
|
|
178
185
|
copy.call(:disposable_emails)
|
179
186
|
copy.call(:disposable_domains)
|
180
187
|
copy.call(:free_email_domains)
|
188
|
+
copy.call(:roles)
|
181
189
|
end
|
182
190
|
end
|
183
191
|
```
|
@@ -200,6 +208,7 @@ $ npm install @fnando/email_data
|
|
200
208
|
const disposableEmails = require("@fnando/email_data/data/json/disposable_emails.json");
|
201
209
|
const disposableDomains = require("@fnando/email_data/data/json/disposable_domains.json");
|
202
210
|
const freeEmailDomains = require("@fnando/email_data/data/json/free_email_domains.json");
|
211
|
+
const roles = require("@fnando/email_data/data/json/roles.json");
|
203
212
|
```
|
204
213
|
|
205
214
|
## Dataset
|
@@ -213,8 +222,8 @@ like to add, please make a pull request against the files `data/manual/*.txt`.
|
|
213
222
|
free email services must go here. E.g. `d.i.s.p.o.s.a.b.l.e+1234@gmail.com`
|
214
223
|
must be added as `disposable@gmail.com`.
|
215
224
|
- `data/manual/free_email_domains.txt`: only free email services must go here.
|
216
|
-
|
217
|
-
|
225
|
+
- `data/manual/roles.txt`: list of role-based user names like `info` or
|
226
|
+
`no-reply`.
|
218
227
|
|
219
228
|
## Development
|
220
229
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
1604907377
|
data/data/disposable_domains.txt
CHANGED
@@ -41810,6 +41810,7 @@ getinstafollowers.website
|
|
41810
41810
|
getinsuranceforyou.com
|
41811
41811
|
getintopci.com
|
41812
41812
|
getisrael.com
|
41813
|
+
getit-beauty.com
|
41813
41814
|
getitfast.com
|
41814
41815
|
getjar.pl
|
41815
41816
|
getjulia.com
|
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": "1604907377.0.0",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: email_data
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '
|
4
|
+
version: '1604907377'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nando Vieira
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-11-
|
11
|
+
date: 2020-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|