email_data 1602274654 → 1603224590
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/.github/workflows/tests.yml +67 -0
- data/.gitignore +1 -1
- data/.rubocop.yml +1 -1
- data/.tool-versions +1 -1
- data/Gemfile.lock +89 -0
- data/README.md +10 -0
- data/VERSION +1 -1
- data/bin/publish +20 -1
- data/bin/publish-gem +1 -5
- data/bin/sync-disposable-emails +2 -2
- data/data/disposable_domains.txt +310 -1
- data/data/free_email_domains.txt +10 -0
- data/data/manual/free_email_domains.txt +317 -0
- data/data/tlds.txt +1 -0
- data/package.json +1 -1
- metadata +5 -4
- data/.travis.yml +0 -6
data/data/tlds.txt
CHANGED
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": "1603224590.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: '1603224590'
|
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-10-
|
11
|
+
date: 2020-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -173,12 +173,13 @@ extensions: []
|
|
173
173
|
extra_rdoc_files: []
|
174
174
|
files:
|
175
175
|
- ".github/FUNDING.yml"
|
176
|
+
- ".github/workflows/tests.yml"
|
176
177
|
- ".gitignore"
|
177
178
|
- ".rubocop.yml"
|
178
179
|
- ".tool-versions"
|
179
|
-
- ".travis.yml"
|
180
180
|
- CODE_OF_CONDUCT.md
|
181
181
|
- Gemfile
|
182
|
+
- Gemfile.lock
|
182
183
|
- LICENSE.txt
|
183
184
|
- README.md
|
184
185
|
- Rakefile
|
@@ -228,7 +229,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
228
229
|
- !ruby/object:Gem::Version
|
229
230
|
version: '0'
|
230
231
|
requirements: []
|
231
|
-
rubygems_version: 3.1.
|
232
|
+
rubygems_version: 3.1.4
|
232
233
|
signing_key:
|
233
234
|
specification_version: 4
|
234
235
|
summary: This project is a compilation of datasets related to emails. Includes disposable
|