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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 391be04e81ca2b32cfc69037783220e22f1b032a8f89d564ab7cf92113bb018d
4
- data.tar.gz: 18eddc910a8496c3700c54d37779afebd393d41963cdce3a921525657180f684
3
+ metadata.gz: 7ee4f3cd6480023a786dddb8575eef1e905c483ae039fc28fd83a58801a10898
4
+ data.tar.gz: 00c365370cd541acbac7815975e7fb2bba3642b1a2fe67c9babd423fbbad2aa8
5
5
  SHA512:
6
- metadata.gz: 3c89b25b91cf0a350ef529cdf8a425ecdedca7166bf9dc4c0f751c463ab11b821f94a5699f81f45d8fd4c5280fa001c6c406633e98b43725813bccc71eba6f6c
7
- data.tar.gz: adf9cde0a5e8588a82a179e3b8f84d5d42e9476158bf5db8d85413c2c095b27e6a50632f859c760c23a55452280db6187405847985891ae32a8926e42a731c2a
6
+ metadata.gz: ab4ee9e948f586672c4a6e1a54ef1923853ca29493e9926f61d4eb6c2b1c40e35e660957d28c74d99c7e0dc3b773f34c9bd4bb0267bfb3380fe82a6750f30434
7
+ data.tar.gz: 283ac7b4918b5fc74fb5edaca8a59af3ad0da8173eea5815b853fb2e46c9b2747585d5a46338e9d246a022c0ec40f446ea1450e0945fbb489d024ddd22ebf667
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- email_data (1605293459)
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.0)
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
- 1605433987
1
+ 1605483437
@@ -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
@@ -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": "1605432951.0.0",
4
+ "version": "1605483437.0.0",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: email_data
3
3
  version: !ruby/object:Gem::Version
4
- version: '1605433987'
4
+ version: '1605483437'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira