email_data 1605588714 → 1605671224
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/CODEOWNERS +4 -0
- data/.github/FUNDING.yml +3 -2
- data/.github/ISSUE_TEMPLATE/bug_report.md +41 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +23 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +38 -0
- data/.github/dependabot.yml +15 -0
- data/.github/workflows/{tests.yml → ruby-tests.yml} +3 -3
- data/.rubocop.yml +6 -10
- data/CONTRIBUTING.md +77 -0
- data/Gemfile +0 -1
- data/Gemfile.lock +2 -2
- data/LICENSE.md +20 -0
- data/README.md +30 -41
- data/VERSION +1 -1
- data/bin/console +8 -6
- data/bin/helpers.rb +0 -0
- data/bin/setup +2 -0
- data/data/disposable_domains.txt +3 -0
- data/data/free_email_domains.txt +1 -0
- data/data/manual/free_email_domains.txt +1 -0
- data/email_data.gemspec +20 -14
- data/package.json +1 -1
- metadata +15 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f78471393cd5a69fca89d9a6250d8ec333854c6ef4938029851420b4bdf64df
|
4
|
+
data.tar.gz: 942973f41973e229441d887bb6ddf7e52f837c2eef35c2521dcc8f62c31718e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c7e94dd8604a643668910b1316b306c2752d54cdb8d1e86f3d22fd500af37b78011edbf9bc7bbd2d711f9edbd15736714c065c07c3baee1ffe2746f40868171
|
7
|
+
data.tar.gz: 4c64bf7c3cf4fa882b4ce29f4f8b339e1f58fb685f4901d9e4079327a354470e2a4c3c9a1d06fae9d59dc03540c3eb58b8b4552be5581e142af40f378402b8da
|
data/.github/CODEOWNERS
ADDED
data/.github/FUNDING.yml
CHANGED
@@ -0,0 +1,41 @@
|
|
1
|
+
---
|
2
|
+
name: "🐛 Bug Report"
|
3
|
+
about: Report a reproducible bug or regression.
|
4
|
+
title: 'Bug: '
|
5
|
+
labels: 'Status: Unconfirmed'
|
6
|
+
|
7
|
+
---
|
8
|
+
|
9
|
+
<!--
|
10
|
+
- Please provide a clear and concise description of what the bug is.
|
11
|
+
- If possible, add an example reproducing your issue.
|
12
|
+
- Please test using the latest version of email_data
|
13
|
+
to make sure your issue has not already been fixed.
|
14
|
+
-->
|
15
|
+
|
16
|
+
## Description
|
17
|
+
|
18
|
+
[Add bug description here]
|
19
|
+
|
20
|
+
## How to reproduce
|
21
|
+
|
22
|
+
[Add steps on how to reproduce this issue]
|
23
|
+
|
24
|
+
## What do you expect
|
25
|
+
|
26
|
+
[Describe what do you expect to happen]
|
27
|
+
|
28
|
+
## What happened instead
|
29
|
+
|
30
|
+
[Describe the actual results]
|
31
|
+
|
32
|
+
## Software:
|
33
|
+
|
34
|
+
- Gem version: [Add gem version here]
|
35
|
+
- Ruby version: [Add version here]
|
36
|
+
|
37
|
+
## Full backtrace
|
38
|
+
|
39
|
+
```text
|
40
|
+
[Paste full backtrace here]
|
41
|
+
```
|
@@ -0,0 +1,23 @@
|
|
1
|
+
---
|
2
|
+
name: "💡 Feature request"
|
3
|
+
about: Have an idea that may be useful? Make a suggestion!
|
4
|
+
title: 'Feature Request: '
|
5
|
+
labels: 'Feature request'
|
6
|
+
|
7
|
+
---
|
8
|
+
|
9
|
+
## Description
|
10
|
+
|
11
|
+
_A clear and concise description of what the problem is._
|
12
|
+
|
13
|
+
## Describe the solution
|
14
|
+
|
15
|
+
_A clear and concise description of what you want to happen._
|
16
|
+
|
17
|
+
## Alternatives you considered
|
18
|
+
|
19
|
+
_A clear and concise description of any alternative solutions or features you've considered._
|
20
|
+
|
21
|
+
## Additional context
|
22
|
+
|
23
|
+
_Add any other context, screenshots, links, etc about the feature request here._
|
@@ -0,0 +1,38 @@
|
|
1
|
+
<!--
|
2
|
+
If you're making a doc PR or something tiny where the below is irrelevant,
|
3
|
+
delete this template and use a short description, but in your description aim to
|
4
|
+
include both what the change is, and why it is being made, with enough context
|
5
|
+
for anyone to understand.
|
6
|
+
-->
|
7
|
+
|
8
|
+
<details>
|
9
|
+
<summary>PR Checklist</summary>
|
10
|
+
|
11
|
+
### PR Structure
|
12
|
+
|
13
|
+
- [ ] This PR has reasonably narrow scope (if not, break it down into smaller
|
14
|
+
PRs).
|
15
|
+
- [ ] This PR avoids mixing refactoring changes with feature changes (split into
|
16
|
+
two PRs otherwise).
|
17
|
+
- [ ] This PR's title starts is concise and descriptive.
|
18
|
+
|
19
|
+
### Thoroughness
|
20
|
+
|
21
|
+
- [ ] This PR adds tests for the most critical parts of the new functionality or
|
22
|
+
fixes.
|
23
|
+
- [ ] I've updated any docs, `.md` files, etc… affected by this change.
|
24
|
+
|
25
|
+
</details>
|
26
|
+
|
27
|
+
### What
|
28
|
+
|
29
|
+
[TODO: Short statement about what is changing.]
|
30
|
+
|
31
|
+
### Why
|
32
|
+
|
33
|
+
[TODO: Why this change is being made. Include any context required to understand
|
34
|
+
the why.]
|
35
|
+
|
36
|
+
### Known limitations
|
37
|
+
|
38
|
+
[TODO or N/A]
|
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
# Documentation:
|
3
|
+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
4
|
+
|
5
|
+
version: 2
|
6
|
+
updates:
|
7
|
+
- package-ecosystem: "github-actions"
|
8
|
+
directory: "/"
|
9
|
+
schedule:
|
10
|
+
interval: "daily"
|
11
|
+
|
12
|
+
- package-ecosystem: "bundler"
|
13
|
+
directory: "/"
|
14
|
+
schedule:
|
15
|
+
interval: "daily"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
name:
|
1
|
+
name: ruby-tests
|
2
2
|
|
3
3
|
on:
|
4
4
|
pull_request:
|
@@ -15,7 +15,7 @@ jobs:
|
|
15
15
|
strategy:
|
16
16
|
fail-fast: false
|
17
17
|
matrix:
|
18
|
-
ruby: ["2.7.x", "2.6.x"
|
18
|
+
ruby: ["2.7.x", "2.6.x"]
|
19
19
|
|
20
20
|
services:
|
21
21
|
postgres:
|
@@ -26,7 +26,7 @@ jobs:
|
|
26
26
|
--health-retries 5
|
27
27
|
|
28
28
|
steps:
|
29
|
-
- uses: actions/checkout@
|
29
|
+
- uses: actions/checkout@v2.3.4
|
30
30
|
|
31
31
|
- uses: actions/cache@v2
|
32
32
|
with:
|
data/.rubocop.yml
CHANGED
@@ -3,18 +3,14 @@ inherit_gem:
|
|
3
3
|
rubocop-fnando: .rubocop.yml
|
4
4
|
|
5
5
|
AllCops:
|
6
|
-
TargetRubyVersion: 2.
|
6
|
+
TargetRubyVersion: 2.6
|
7
7
|
NewCops: enable
|
8
8
|
|
9
|
+
Metrics/BlockLength:
|
10
|
+
Enabled: false
|
11
|
+
|
9
12
|
Metrics/AbcSize:
|
10
|
-
|
11
|
-
- test/support/**/*
|
13
|
+
Enabled: false
|
12
14
|
|
13
15
|
Metrics/MethodLength:
|
14
|
-
|
15
|
-
- test/support/**/*
|
16
|
-
|
17
|
-
Metrics/BlockLength:
|
18
|
-
Exclude:
|
19
|
-
- email_data.gemspec
|
20
|
-
- test/support/**/*
|
16
|
+
Enabled: false
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
# Contributing to email_data
|
2
|
+
|
3
|
+
👍🎉 First off, thanks for taking the time to contribute! 🎉👍
|
4
|
+
|
5
|
+
The following is a set of guidelines for contributing to this project. These are
|
6
|
+
mostly guidelines, not rules. Use your best judgment, and feel free to propose
|
7
|
+
changes to this document in a pull request.
|
8
|
+
|
9
|
+
## Code of Conduct
|
10
|
+
|
11
|
+
Everyone interacting in this project's codebases, issue trackers, chat rooms and
|
12
|
+
mailing lists is expected to follow the
|
13
|
+
[code of conduct](https://github.com/fnando/email_data/blob/main/CODE_OF_CONDUCT.md).
|
14
|
+
|
15
|
+
## Reporting bugs
|
16
|
+
|
17
|
+
This section guides you through submitting a bug report. Following these
|
18
|
+
guidelines helps maintainers and the community understand your report, reproduce
|
19
|
+
the behavior, and find related reports.
|
20
|
+
|
21
|
+
- Before creating bug reports, please check the open issues; somebody may
|
22
|
+
already have submitted something similar, and you may not need to create a new
|
23
|
+
one.
|
24
|
+
- When you are creating a bug report, please include as many details as
|
25
|
+
possible, with an example reproducing the issue.
|
26
|
+
|
27
|
+
## Contributing with code
|
28
|
+
|
29
|
+
Before making any radicals changes, please make sure you discuss your intention
|
30
|
+
by [opening an issue on Github](https://github.com/fnando/email_data/issues).
|
31
|
+
|
32
|
+
When you're ready to make your pull request, follow checklist below to make sure
|
33
|
+
your contribution is according to how this project works.
|
34
|
+
|
35
|
+
1. [Fork](https://help.github.com/forking/) email_data
|
36
|
+
2. Create a topic branch - `git checkout -b my_branch`
|
37
|
+
3. Make your changes using [descriptive commit messages](#commit-messages)
|
38
|
+
4. Push to your branch - `git push origin my_branch`
|
39
|
+
5. [Create a pull request](https://help.github.com/articles/creating-a-pull-request)
|
40
|
+
6. That's it!
|
41
|
+
|
42
|
+
## Styleguides
|
43
|
+
|
44
|
+
### Commit messages
|
45
|
+
|
46
|
+
- Use the present tense ("Add feature" not "Added feature")
|
47
|
+
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
|
48
|
+
- Limit the first line to 72 characters or less
|
49
|
+
- Reference issues and pull requests liberally after the first line
|
50
|
+
|
51
|
+
### Changelog
|
52
|
+
|
53
|
+
- Add a message describing your changes to the "Unreleased" section. The
|
54
|
+
changelog message should follow the same style as the commit message.
|
55
|
+
- Prefix your message with one of the following:
|
56
|
+
- `[Added]` for new features.
|
57
|
+
- `[Changed]` for changes in existing functionality.
|
58
|
+
- `[Deprecated]` for soon-to-be removed features.
|
59
|
+
- `[Removed]` for now removed features.
|
60
|
+
- `[Fixed]` for any bug fixes.
|
61
|
+
- `[Security]` in case of vulnerabilities.
|
62
|
+
|
63
|
+
### Ruby code
|
64
|
+
|
65
|
+
- This project uses [Rubocop](https://rubocop.org) to enforce code style. Before
|
66
|
+
submitting your changes, make sure your tests are passing and code conforms to
|
67
|
+
the expected style by running `rake`.
|
68
|
+
- Do not change the library version. This will be done by the maintainer
|
69
|
+
whenever a new version is about to be released.
|
70
|
+
|
71
|
+
### JavaScript code
|
72
|
+
|
73
|
+
- This project uses [ESLint](https://eslint.org) to enforce code style. Before
|
74
|
+
submitting your changes, make sure your tests are passing and code conforms to
|
75
|
+
the expected style by running `yarn test:ci`.
|
76
|
+
- Do not change the library version. This will be done by the maintainer
|
77
|
+
whenever a new version is about to be released.
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
email_data (
|
4
|
+
email_data (1605671224)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -38,7 +38,7 @@ 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.2)
|
42
42
|
email_data
|
43
43
|
simpleidn
|
44
44
|
rubocop (1.3.1)
|
data/LICENSE.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Nando Vieira
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,14 +1,11 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
[](https://www.npmjs.com/package/@fnando/email_data)
|
10
|
-
- License:
|
11
|
-

|
1
|
+
# email_data
|
2
|
+
|
3
|
+
[](https://github.com/fnando/email_data)
|
4
|
+
[](https://codeclimate.com/github/fnando/email_data)
|
5
|
+
[](https://rubygems.org/gems/email_data)
|
6
|
+
[](https://rubygems.org/gems/email_data)
|
7
|
+
[](https://npmjs.org/package/@fnando/email_data)
|
8
|
+
[](https://npmjs.org/package/@fnando/email_data)
|
12
9
|
|
13
10
|
This project is a compilation of datasets related to emails.
|
14
11
|
|
@@ -20,25 +17,21 @@ This project is a compilation of datasets related to emails.
|
|
20
17
|
The data is compiled from several different sources, so thank you all for making
|
21
18
|
this data available.
|
22
19
|
|
23
|
-
##
|
20
|
+
## Ruby
|
21
|
+
|
22
|
+
### Installation
|
24
23
|
|
25
|
-
|
24
|
+
```bash
|
25
|
+
gem install email_data
|
26
|
+
```
|
26
27
|
|
27
|
-
|
28
|
+
Or add the following line to your project's Gemfile:
|
28
29
|
|
29
30
|
```ruby
|
30
31
|
gem "email_data"
|
31
32
|
```
|
32
33
|
|
33
|
-
|
34
|
-
|
35
|
-
$ bundle install
|
36
|
-
|
37
|
-
Or install it yourself as:
|
38
|
-
|
39
|
-
$ gem install email_data
|
40
|
-
|
41
|
-
#### Usage
|
34
|
+
### Usage
|
42
35
|
|
43
36
|
```ruby
|
44
37
|
require "email_data"
|
@@ -218,7 +211,9 @@ class LoadEmailData < ActiveRecord::Migration[6.1]
|
|
218
211
|
end
|
219
212
|
```
|
220
213
|
|
221
|
-
|
214
|
+
## Node.js
|
215
|
+
|
216
|
+
### Installation
|
222
217
|
|
223
218
|
```console
|
224
219
|
$ yarn add @fnando/email_data
|
@@ -230,7 +225,7 @@ or
|
|
230
225
|
$ npm install @fnando/email_data
|
231
226
|
```
|
232
227
|
|
233
|
-
|
228
|
+
### Usage
|
234
229
|
|
235
230
|
```js
|
236
231
|
const disposableEmails = require("@fnando/email_data/data/json/disposable_emails.json");
|
@@ -259,33 +254,27 @@ like to add, please make a pull request against the files `data/manual/*.txt`.
|
|
259
254
|
- `data/manual/private_relays.txt`: list of private relay services, like Apple's
|
260
255
|
Hide My Email.
|
261
256
|
|
262
|
-
##
|
257
|
+
## Maintainer
|
263
258
|
|
264
|
-
|
265
|
-
`rake test` to run the tests. You can also run `bin/console` for an interactive
|
266
|
-
prompt that will allow you to experiment.
|
259
|
+
- [Nando Vieira](https://github.com/fnando)
|
267
260
|
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
git commits and tags, and push the `.gem` file to
|
272
|
-
[rubygems.org](https://rubygems.org).
|
261
|
+
## Contributors
|
262
|
+
|
263
|
+
- https://github.com/fnando/email_data/contributors
|
273
264
|
|
274
265
|
## Contributing
|
275
266
|
|
276
|
-
|
277
|
-
https://github.com/fnando/email_data.
|
278
|
-
welcoming space for collaboration, and contributors are expected to adhere to
|
279
|
-
the
|
280
|
-
[code of conduct](https://github.com/fnando/email_data/blob/main/CODE_OF_CONDUCT.md).
|
267
|
+
For more details about how to contribute, please read
|
268
|
+
https://github.com/fnando/email_data/blob/main/CONTRIBUTING.md.
|
281
269
|
|
282
270
|
## License
|
283
271
|
|
284
272
|
The gem is available as open source under the terms of the
|
285
|
-
[MIT License](https://opensource.org/licenses/MIT).
|
273
|
+
[MIT License](https://opensource.org/licenses/MIT). A copy of the license can be
|
274
|
+
found at https://github.com/fnando/email_data/blob/main/LICENSE.md.
|
286
275
|
|
287
276
|
## Code of Conduct
|
288
277
|
|
289
|
-
Everyone interacting in the
|
278
|
+
Everyone interacting in the email_data project's codebases, issue trackers, chat
|
290
279
|
rooms and mailing lists is expected to follow the
|
291
280
|
[code of conduct](https://github.com/fnando/email_data/blob/main/CODE_OF_CONDUCT.md).
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
1605671224
|
data/bin/console
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
4
|
require "bundler/setup"
|
4
5
|
require "email_data"
|
@@ -6,9 +7,10 @@ require "email_data"
|
|
6
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
8
|
# with your gem easier. You can also use a different console, if you like.
|
8
9
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start(__FILE__)
|
10
|
+
begin
|
11
|
+
require "pry"
|
12
|
+
Pry.start
|
13
|
+
rescue LoadError
|
14
|
+
require "irb"
|
15
|
+
IRB.start(__FILE__)
|
16
|
+
end
|
data/bin/helpers.rb
CHANGED
File without changes
|
data/bin/setup
CHANGED
data/data/disposable_domains.txt
CHANGED
@@ -17009,6 +17009,7 @@ betnis87.com
|
|
17009
17009
|
betnis89.com
|
17010
17010
|
betodesa.com
|
17011
17011
|
betoffice206.com
|
17012
|
+
betoffice224.com
|
17012
17013
|
betofis.net
|
17013
17014
|
betofis10.com
|
17014
17015
|
betofis101.com
|
@@ -21077,6 +21078,7 @@ buyyourtoledohome.com
|
|
21077
21078
|
buyyoutubviews.com
|
21078
21079
|
buzlat.org
|
21079
21080
|
buzlin.club
|
21081
|
+
buzz.buzz
|
21080
21082
|
buzzcluby.com
|
21081
21083
|
buzzcompact.com
|
21082
21084
|
buzzdating.info
|
@@ -105505,6 +105507,7 @@ volumetudo.website
|
|
105505
105507
|
volumkas.cf
|
105506
105508
|
volunteergarden.org
|
105507
105509
|
voluptuary.site
|
105510
|
+
volvefloor.com
|
105508
105511
|
volvo-ab.cf
|
105509
105512
|
volvo-ab.ga
|
105510
105513
|
volvo-ab.gq
|
data/data/free_email_domains.txt
CHANGED
data/email_data.gemspec
CHANGED
@@ -1,23 +1,29 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative "lib/email_data/version"
|
3
|
+
require_relative "./lib/email_data/version"
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
|
-
spec.name
|
7
|
-
spec.version
|
8
|
-
spec.authors
|
9
|
-
spec.email
|
10
|
-
|
11
|
-
spec.summary = "This project is a compilation of datasets related to " \
|
12
|
-
"emails. Includes disposable emails, disposable " \
|
13
|
-
"domains, and free email services."
|
14
|
-
spec.description = spec.summary
|
15
|
-
spec.homepage = "https://github.com/fnando/email_data"
|
16
|
-
spec.license = "MIT"
|
17
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
6
|
+
spec.name = "email_data"
|
7
|
+
spec.version = EmailData::VERSION
|
8
|
+
spec.authors = ["Nando Vieira"]
|
9
|
+
spec.email = ["me@fnando.com"]
|
18
10
|
|
11
|
+
spec.summary = "This project is a compilation of datasets related to " \
|
12
|
+
"emails. Includes disposable emails, disposable " \
|
13
|
+
"domains, and free email services."
|
14
|
+
spec.description = spec.summary
|
15
|
+
spec.license = "MIT"
|
16
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
|
17
|
+
|
18
|
+
github_url = "https://github.com/fnando/email_data"
|
19
|
+
github_tree_url = "#{github_url}/tree/v#{spec.version}"
|
20
|
+
|
21
|
+
spec.homepage = github_url
|
19
22
|
spec.metadata["homepage_uri"] = spec.homepage
|
20
|
-
spec.metadata["
|
23
|
+
spec.metadata["bug_tracker_uri"] = "#{github_url}/issues"
|
24
|
+
spec.metadata["source_code_uri"] = github_tree_url
|
25
|
+
spec.metadata["documentation_uri"] = "#{github_tree_url}/README.md"
|
26
|
+
spec.metadata["license_uri"] = "#{github_tree_url}/LICENSE.md"
|
21
27
|
|
22
28
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
23
29
|
`git ls-files -z`
|
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": "1605671224.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: '1605671224'
|
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-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -172,14 +172,21 @@ executables: []
|
|
172
172
|
extensions: []
|
173
173
|
extra_rdoc_files: []
|
174
174
|
files:
|
175
|
+
- ".github/CODEOWNERS"
|
175
176
|
- ".github/FUNDING.yml"
|
176
|
-
- ".github/
|
177
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
178
|
+
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
179
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
180
|
+
- ".github/dependabot.yml"
|
181
|
+
- ".github/workflows/ruby-tests.yml"
|
177
182
|
- ".gitignore"
|
178
183
|
- ".rubocop.yml"
|
179
184
|
- ".tool-versions"
|
180
185
|
- CODE_OF_CONDUCT.md
|
186
|
+
- CONTRIBUTING.md
|
181
187
|
- Gemfile
|
182
188
|
- Gemfile.lock
|
189
|
+
- LICENSE.md
|
183
190
|
- LICENSE.txt
|
184
191
|
- README.md
|
185
192
|
- Rakefile
|
@@ -218,7 +225,10 @@ licenses:
|
|
218
225
|
- MIT
|
219
226
|
metadata:
|
220
227
|
homepage_uri: https://github.com/fnando/email_data
|
221
|
-
|
228
|
+
bug_tracker_uri: https://github.com/fnando/email_data/issues
|
229
|
+
source_code_uri: https://github.com/fnando/email_data/tree/v1605671224
|
230
|
+
documentation_uri: https://github.com/fnando/email_data/tree/v1605671224/README.md
|
231
|
+
license_uri: https://github.com/fnando/email_data/tree/v1605671224/LICENSE.md
|
222
232
|
post_install_message:
|
223
233
|
rdoc_options: []
|
224
234
|
require_paths:
|
@@ -227,7 +237,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
227
237
|
requirements:
|
228
238
|
- - ">="
|
229
239
|
- !ruby/object:Gem::Version
|
230
|
-
version: 2.
|
240
|
+
version: 2.6.0
|
231
241
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
232
242
|
requirements:
|
233
243
|
- - ">="
|