email_data 1604799858 → 1604907377

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: 7210aff055642fad4bf74c992172cf65806cdd594503b8fc7dff1a034a9257d6
4
- data.tar.gz: b713ef242f43faa511db3c8562e11935bc30e13ddf0e08e12bcc531ded71eea1
3
+ metadata.gz: 63429f97483aed55d56a256b2132a18ce6d352be1e3bc57bcf41c975b7f74020
4
+ data.tar.gz: 65f4750c6ff5766bbe66efc11339c44f6837561d0864202a6e54970bdd9c9e22
5
5
  SHA512:
6
- metadata.gz: c6ddf2fbd435fd0817781390d45955ac276cda769f97c2e778f12f289c3df40118ba9451828eb3f3e9d626bb804ffcc6bb165513433d793cf28c37bccbc61708
7
- data.tar.gz: 69bca9af0834d406e90de386c38135134f5763f5a78f2358210b82157073b0f277944febee4bbc653099515d7ffd2f0c3cd7f5ad64e2964ac1a05fa60a07361c
6
+ metadata.gz: 45d0b566a2f9a1b843828fe1a2139f72f0f56b770357121f8041588b61ffcb7f1b45c073bdb565dbc60c01939ee5032db54675d2d77c4bea99f1380047c1e080
7
+ data.tar.gz: cc8efb3365fd0b0851e941d1da92b3f3ab013b8f5e98a43eaf6aaf0957fa7a340a5df203427baf6926b60ea9cd310e3defa82e10b0cdf8811279951baa55ee90
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- email_data (1604799858)
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.7)
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
- These are services that allow anyone to create an email account, even if it's
217
- just a trial without credit cards.
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
- 1604799858
1
+ 1604907377
@@ -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
@@ -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": "1604799858.0.0",
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: '1604799858'
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-08 00:00:00.000000000 Z
11
+ date: 2020-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord