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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f72ac55688da2831c2b38ed3597453aa1e6c287e141fa050651369bdb62478f9
4
- data.tar.gz: 4abf910163c5de1edfe916c512759f12bdd698e13b93a79da3a6b1e2657ba5f7
3
+ metadata.gz: 8f78471393cd5a69fca89d9a6250d8ec333854c6ef4938029851420b4bdf64df
4
+ data.tar.gz: 942973f41973e229441d887bb6ddf7e52f837c2eef35c2521dcc8f62c31718e3
5
5
  SHA512:
6
- metadata.gz: 060b04778ed545923c428c0931c3aeefbb33ea975b1a0f74f5d3d752624e98ac7dd94580a3e8b1ada049c6620fb9df2b2fe54c10d29ed130096e0d2103a82580
7
- data.tar.gz: 63cc89b31258dec4edea810e6aed73c2b62bf48dfe968cf8b522954a4b01b32fe4a8f9e3655ca4252b5c784ffaca25c14c4a79a3cc1a1dbdb001a2fb41c28f44
6
+ metadata.gz: 7c7e94dd8604a643668910b1316b306c2752d54cdb8d1e86f3d22fd500af37b78011edbf9bc7bbd2d711f9edbd15736714c065c07c3baee1ffe2746f40868171
7
+ data.tar.gz: 4c64bf7c3cf4fa882b4ce29f4f8b339e1f58fb685f4901d9e4079327a354470e2a4c3c9a1d06fae9d59dc03540c3eb58b8b4552be5581e142af40f378402b8da
@@ -0,0 +1,4 @@
1
+ # You can read more about CODEOWNERS at
2
+ # https://help.github.com/github/creating-cloning-and-archiving-repositories/about-code-owners
3
+
4
+ * @fnando
@@ -1,3 +1,4 @@
1
- ---
1
+ # These are supported funding model platforms
2
+
2
3
  github: [fnando]
3
- custom: ["https://www.paypal.me/nandovieira/🍕"]
4
+ custom: ["https://paypal.me/nandovieira/🍕"]
@@ -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: Tests
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", "2.5.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@v1
29
+ - uses: actions/checkout@v2.3.4
30
30
 
31
31
  - uses: actions/cache@v2
32
32
  with:
@@ -3,18 +3,14 @@ inherit_gem:
3
3
  rubocop-fnando: .rubocop.yml
4
4
 
5
5
  AllCops:
6
- TargetRubyVersion: 2.5
6
+ TargetRubyVersion: 2.6
7
7
  NewCops: enable
8
8
 
9
+ Metrics/BlockLength:
10
+ Enabled: false
11
+
9
12
  Metrics/AbcSize:
10
- Exclude:
11
- - test/support/**/*
13
+ Enabled: false
12
14
 
13
15
  Metrics/MethodLength:
14
- Exclude:
15
- - test/support/**/*
16
-
17
- Metrics/BlockLength:
18
- Exclude:
19
- - email_data.gemspec
20
- - test/support/**/*
16
+ Enabled: false
@@ -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
@@ -2,5 +2,4 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- # Specify your gem's dependencies in email_data.gemspec
6
5
  gemspec
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- email_data (1605588714)
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.1)
41
+ root_domain (0.1.2)
42
42
  email_data
43
43
  simpleidn
44
44
  rubocop (1.3.1)
@@ -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
- # EmailData
2
-
3
- - Ruby:
4
- [![Tests](https://github.com/fnando/email_data/workflows/Tests/badge.svg)](https://github.com/fnando/email_data/actions?query=workflow%3ATests)
5
- [![Gem](https://img.shields.io/gem/v/email_data.svg)](https://rubygems.org/gems/email_data)
6
- [![Gem](https://img.shields.io/gem/dt/email_data.svg?label=gems%20downloads)](https://rubygems.org/gems/email_data)
7
- - NPM:
8
- [![NPM package version](https://img.shields.io/npm/v/@fnando/email_data.svg)](https://www.npmjs.com/package/@fnando/email_data)
9
- [![NPM Downloads](https://img.shields.io/npm/dt/@fnando/email_data?label=npm%20downloads)](https://www.npmjs.com/package/@fnando/email_data)
10
- - License:
11
- ![License](https://img.shields.io/static/v1?label=License&message=MIT&color=4da3dd)
1
+ # email_data
2
+
3
+ [![Tests](https://github.com/fnando/email_data/workflows/ruby-tests/badge.svg)](https://github.com/fnando/email_data)
4
+ [![Code Climate](https://codeclimate.com/github/fnando/email_data/badges/gpa.svg)](https://codeclimate.com/github/fnando/email_data)
5
+ [![Gem version](https://img.shields.io/gem/v/email_data.svg?label=Gem%20version)](https://rubygems.org/gems/email_data)
6
+ [![Gem downloads](https://img.shields.io/gem/dt/email_data.svg?label=Gem%20downloads)](https://rubygems.org/gems/email_data)
7
+ [![NPM version](https://img.shields.io/npm/v/%40fnando%2Femail_data.svg?label=NPM%20version)](https://npmjs.org/package/@fnando/email_data)
8
+ [![NPM downloads](https://img.shields.io/npm/dt/%40fnando%2Femail_data.svg?label=NPM%20downloads)](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
- ## Installation
20
+ ## Ruby
21
+
22
+ ### Installation
24
23
 
25
- ### Ruby
24
+ ```bash
25
+ gem install email_data
26
+ ```
26
27
 
27
- Add this line to your application's Gemfile:
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
- And then execute:
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
- ### Node.js
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
- #### Usage
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
- ## Development
257
+ ## Maintainer
263
258
 
264
- After checking out the repo, run `bin/setup` to install dependencies. Then, run
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
- To install this gem onto your local machine, run `bundle exec rake install`. To
269
- release a new version, update the version number in `version.rb`, and then run
270
- `bundle exec rake release`, which will create a git tag for the version, push
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
- Bug reports and pull requests are welcome on GitHub at
277
- https://github.com/fnando/email_data. This project is intended to be a safe,
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 EmailData project's codebases, issue trackers, chat
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
- 1605588714
1
+ 1605671224
@@ -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
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
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
File without changes
data/bin/setup CHANGED
@@ -1,5 +1,7 @@
1
1
  #!/usr/bin/env bash
2
+
2
3
  set -euo pipefail
4
+
3
5
  IFS=$'\n\t'
4
6
  set -vx
5
7
 
@@ -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
@@ -188,6 +188,7 @@ housemail.com
188
188
  humanoid.net
189
189
  icloud.com
190
190
  ig.com.br
191
+ ik.me
191
192
  imap-mail.com
192
193
  imap.cc
193
194
  imapmail.org
@@ -187,6 +187,7 @@ housemail.com
187
187
  humanoid.net
188
188
  icloud.com
189
189
  ig.com.br
190
+ ik.me
190
191
  imap-mail.com
191
192
  imap.cc
192
193
  imapmail.org
@@ -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 = "email_data"
7
- spec.version = EmailData::VERSION
8
- spec.authors = ["Nando Vieira"]
9
- spec.email = ["me@fnando.com"]
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["source_code_uri"] = spec.homepage
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`
@@ -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": "1605588714.0.0",
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: '1605588714'
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-17 00:00:00.000000000 Z
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/workflows/tests.yml"
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
- source_code_uri: https://github.com/fnando/email_data
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.5.0
240
+ version: 2.6.0
231
241
  required_rubygems_version: !ruby/object:Gem::Requirement
232
242
  requirements:
233
243
  - - ">="