email_data 1605483437 → 1606065366

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: 7ee4f3cd6480023a786dddb8575eef1e905c483ae039fc28fd83a58801a10898
4
- data.tar.gz: 00c365370cd541acbac7815975e7fb2bba3642b1a2fe67c9babd423fbbad2aa8
3
+ metadata.gz: f7dc8272eb99cfde2c879c67cbdbfc9c42f4eda2f7b55a7f212d85e0f0fb8168
4
+ data.tar.gz: '0928ae1a1ba08b7f74e50b07016a117a6ce9932c1de6b5b107bf95177ca05434'
5
5
  SHA512:
6
- metadata.gz: ab4ee9e948f586672c4a6e1a54ef1923853ca29493e9926f61d4eb6c2b1c40e35e660957d28c74d99c7e0dc3b773f34c9bd4bb0267bfb3380fe82a6750f30434
7
- data.tar.gz: 283ac7b4918b5fc74fb5edaca8a59af3ad0da8173eea5815b853fb2e46c9b2747585d5a46338e9d246a022c0ec40f446ea1450e0945fbb489d024ddd22ebf667
6
+ metadata.gz: 3a0b01994679a442f4ae4b1fb07b97593a7fff306957a7b559aeb1fdab37a10232ab2a6c2073f94e1d24f60ab75f6b0901656ad8e84e9d7ea70f020a3b9506b9
7
+ data.tar.gz: 3bb06f2e2b461a4f48b2ef8f03486550ff7d8b518b5dcd5a4b65514ebbd07e56fc4b76e8c877240b1d117846e65a870c8f3e51ae6b41ef6683cf113351c983e0
@@ -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 (1605483437)
4
+ email_data (1606065366)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -38,10 +38,10 @@ 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
- rubocop (1.3.0)
44
+ rubocop (1.3.1)
45
45
  parallel (~> 1.10)
46
46
  parser (>= 2.7.1.5)
47
47
  rainbow (>= 2.2.2, < 4.0)
@@ -52,7 +52,12 @@ GEM
52
52
  unicode-display_width (>= 1.4.0, < 2.0)
53
53
  rubocop-ast (1.1.1)
54
54
  parser (>= 2.7.1.5)
55
- rubocop-fnando (0.0.13)
55
+ rubocop-fnando (0.0.14)
56
+ rubocop
57
+ rubocop-performance
58
+ rubocop-performance (1.9.0)
59
+ rubocop (>= 0.90.0, < 2.0)
60
+ rubocop-ast (>= 0.4.0)
56
61
  ruby-progressbar (1.10.1)
57
62
  simplecov (0.19.1)
58
63
  docile (~> 1.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
- 1605483437
1
+ 1606065366
@@ -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
 
@@ -33,6 +33,7 @@
33
33
  001xs.net
34
34
  001xs.org
35
35
  001xs.xyz
36
+ 002.city
36
37
  002288211.com
37
38
  002r.com
38
39
  002t.com
@@ -6988,6 +6989,7 @@
6988
6989
  8verxcdkrfal61pfag.tk
6989
6990
  8vkopg.us
6990
6991
  8vnond.us
6992
+ 8w903.buzz
6991
6993
  8wehgc2atizw.cf
6992
6994
  8wehgc2atizw.ga
6993
6995
  8wehgc2atizw.gq
@@ -7027,6 +7029,7 @@
7027
7029
  8xgui.com
7028
7030
  8xgun.com
7029
7031
  8xgve.com
7032
+ 8xi.org
7030
7033
  8xzr.com
7031
7034
  8ycxiazai.com
7032
7035
  8ycxz.com
@@ -7773,6 +7776,7 @@ a02sjv3e4e8jk4liat.gq
7773
7776
  a02sjv3e4e8jk4liat.ml
7774
7777
  a02sjv3e4e8jk4liat.tk
7775
7778
  a0f7ukc.com
7779
+ a0fnjd.us
7776
7780
  a0reklama.pl
7777
7781
  a0txa.icu
7778
7782
  a0ywhm.us
@@ -8374,6 +8378,7 @@ accumolecular.com
8374
8378
  accur8.net
8375
8379
  accuracyis.com
8376
8380
  accuranker.tech
8381
+ accuratecallabs.com
8377
8382
  accuratecallabs.net
8378
8383
  accurateforum.info
8379
8384
  accuratehealthman.xyz
@@ -10214,6 +10219,7 @@ alcsehar.ml
10214
10219
  alcsehar.tk
10215
10220
  alcsx.site
10216
10221
  alcyonoid.info
10222
+ aldawaeya.org
10217
10223
  aldealdi.shop
10218
10224
  aldeaminera.info
10219
10225
  aldemimea.xyz
@@ -14840,7 +14846,9 @@ bahisstar221.com
14840
14846
  bahisstar226.com
14841
14847
  bahisstar228.com
14842
14848
  bahisstar229.com
14849
+ bahistek39.com
14843
14850
  bahistek40.com
14851
+ bahistek86.com
14844
14852
  bahisturk14.com
14845
14853
  bahisturk17.com
14846
14854
  bahisturk23.com
@@ -17001,6 +17009,7 @@ betnis87.com
17001
17009
  betnis89.com
17002
17010
  betodesa.com
17003
17011
  betoffice206.com
17012
+ betoffice224.com
17004
17013
  betofis.net
17005
17014
  betofis10.com
17006
17015
  betofis101.com
@@ -17943,6 +17952,7 @@ birminghamalcoholrehab.com
17943
17952
  birminghamcocainerehab.com
17944
17953
  birminghamfans.com
17945
17954
  birminghamheroinrehab.com
17955
+ birminghamquote.com
17946
17956
  biro.gq
17947
17957
  biro.ml
17948
17958
  biro.tk
@@ -18443,6 +18453,7 @@ blogcash.com
18443
18453
  blogcast.blog
18444
18454
  blogcast.lgbt
18445
18455
  blogcast.us
18456
+ blogchannels.com
18446
18457
  blogcollege.com
18447
18458
  blogdad.com
18448
18459
  blogdiary.live
@@ -19901,6 +19912,7 @@ brisbanephotobooth.com
19901
19912
  bristlebrush.us
19902
19913
  bristlebrushes.biz
19903
19914
  bristlebrushes.us
19915
+ bristol-drones.com
19904
19916
  britainst.com
19905
19917
  britbarnmi.ga
19906
19918
  britbarnmi.gq
@@ -20081,6 +20093,7 @@ brvbfj.shop
20081
20093
  brxqoy.cf
20082
20094
  bryanle.com
20083
20095
  bryanlgx.com
20096
+ bryanslist.com
20084
20097
  brymstonne.org
20085
20098
  brypeterson.com
20086
20099
  bryskumde.cf
@@ -20678,6 +20691,7 @@ buvertu.cf
20678
20691
  buvertu.ga
20679
20692
  buvertu.gq
20680
20693
  buvertu.ml
20694
+ buvetti.com
20681
20695
  buxap.com
20682
20696
  buxl.com
20683
20697
  buxod.com
@@ -20747,6 +20761,7 @@ buydispensary.icu
20747
20761
  buydubaimarinaproperty.com
20748
20762
  buyeqaslim.com
20749
20763
  buyeriacta10pills.com
20764
+ buyershop.info
20750
20765
  buyessays-nice.org
20751
20766
  buyfacebooklikeslive.com
20752
20767
  buyfcbkfans.com
@@ -21064,6 +21079,7 @@ buyyourtoledohome.com
21064
21079
  buyyoutubviews.com
21065
21080
  buzlat.org
21066
21081
  buzlin.club
21082
+ buzz.buzz
21067
21083
  buzzcluby.com
21068
21084
  buzzcompact.com
21069
21085
  buzzdating.info
@@ -21309,6 +21325,7 @@ c0sau0gpflgqv0uw2sg.tk
21309
21325
  c1101.club
21310
21326
  c1775.com
21311
21327
  c17d.club
21328
+ c19coalition.net
21312
21329
  c1b842.xyz
21313
21330
  c1er4u.site
21314
21331
  c1jlpo.us
@@ -22364,6 +22381,7 @@ casinobit.club
22364
22381
  casinobonusual2.com
22365
22382
  casinochan2.com
22366
22383
  casinocuan.club
22384
+ casinoelit47.com
22367
22385
  casinoeridanmark.com
22368
22386
  casinofundaily.info
22369
22387
  casinogreat.club
@@ -23624,6 +23642,7 @@ cheapukniketrainerssale.co.uk
23624
23642
  cheapuksalehandbagsoutletlv.co.uk
23625
23643
  cheapukstraightenerssale.info
23626
23644
  cheapusbspeakers.info
23645
+ cheapviagra.org
23627
23646
  cheapwebtraffic.com
23628
23647
  cheapweekendgetawaysforcouples.com
23629
23648
  cheatautomation.com
@@ -24454,6 +24473,7 @@ citymdisp.ga
24454
24473
  citymdisp.gq
24455
24474
  citymdisp.ml
24456
24475
  cityofnah.com
24476
+ cityquote.com
24457
24477
  cityroyal.org
24458
24478
  citytorate.ru
24459
24479
  citytowercasino.com
@@ -24854,6 +24874,7 @@ clickmp.pro
24854
24874
  clickmpnew.pro
24855
24875
  clicknett.com
24856
24876
  clicknowk.pro
24877
+ clickp.pro
24857
24878
  clickpet.online
24858
24879
  clickpm.pro
24859
24880
  clickpnow.pro
@@ -25630,12 +25651,14 @@ coloshild.ru
25630
25651
  coloshron.ru
25631
25652
  colosjoy.ru
25632
25653
  colossuscloud.us
25654
+ colourandcode.com
25633
25655
  colt45forsale.tk
25634
25656
  coltonattorneys.com
25635
25657
  columbuscasino.design
25636
25658
  columbuseldercare.com
25637
25659
  columbusinfo.xyz
25638
25660
  columbusnm.net
25661
+ columbusquote.com
25639
25662
  com-04536875422364784521.top
25640
25663
  com-101634586696.help
25641
25664
  com-1024493459167.online
@@ -25672,6 +25695,8 @@ com-xvrv6yt51g.com
25672
25695
  com.com
25673
25696
  com.mz
25674
25697
  com.ninja
25698
+ com.np
25699
+ com.ru
25675
25700
  com.uk
25676
25701
  com.us
25677
25702
  com3b.com
@@ -25881,6 +25906,7 @@ computerslistnews.site
25881
25906
  computersoftware2012.info
25882
25907
  computerspeakers22.com
25883
25908
  computersshop.futbol
25909
+ computingzone.org
25884
25910
  compvershy.cf
25885
25911
  compvershy.ga
25886
25912
  compvershy.gq
@@ -27169,6 +27195,7 @@ crudeoildemulsifier.com
27169
27195
  crudewag.icu
27170
27196
  cruisecentraladviser.com
27171
27197
  cruisefloppy.com
27198
+ cruisessale.com
27172
27199
  crulle.ru
27173
27200
  crumlin-grill.com
27174
27201
  crunchcompass.com
@@ -28313,6 +28340,7 @@ dalamananadolulisesi.xyz
28313
28340
  dalamanporttransfer.xyz
28314
28341
  dalamanturkishvillas.xyz
28315
28342
  dalanila.tk
28343
+ dalatrk.site
28316
28344
  dalatvirginia.com
28317
28345
  dalbam7.net
28318
28346
  daleadershipinstitute.org
@@ -28831,6 +28859,7 @@ db4t5tes4.ga
28831
28859
  db4t5tes4.gq
28832
28860
  db4t5tes4.ml
28833
28861
  db4t5tes4.tk
28862
+ dbadhe.com
28834
28863
  dbanote.net
28835
28864
  dbatalk.com
28836
28865
  dbataturkioo.com
@@ -36338,6 +36367,7 @@ evavbe.ml
36338
36367
  evavbe.tk
36339
36368
  evavoyance.com
36340
36369
  evbank.ru
36370
+ evbholdingsllc.com
36341
36371
  evcmail.com
36342
36372
  evcr8twoxifpaw.cf
36343
36373
  evcr8twoxifpaw.ga
@@ -36803,6 +36833,7 @@ extra-penis-enlargement.info
36803
36833
  extraaaa.tk
36804
36834
  extraaaa2.ga
36805
36835
  extraaaa2.tk
36836
+ extraale.com
36806
36837
  extraam.loan
36807
36838
  extrabooks.site
36808
36839
  extracccolorrfull.com
@@ -36835,6 +36866,7 @@ exttract.email
36835
36866
  extureme.com
36836
36867
  exwta.us
36837
36868
  exxale.shop
36869
+ exxale.space
36838
36870
  exxon-mobil.tk
36839
36871
  exxoncars.com
36840
36872
  exxx.club
@@ -41054,6 +41086,7 @@ g-o-o-g-l-e.gq
41054
41086
  g-o-o-g-l-e.ml
41055
41087
  g-oproz.ru
41056
41088
  g-secretclass.website
41089
+ g-share.biz
41057
41090
  g-shoponline.info
41058
41091
  g-starblog.org
41059
41092
  g-timyoot.ga
@@ -42061,6 +42094,7 @@ gerandos.ru
42061
42094
  gerdese.online
42062
42095
  gerdimenta.ru
42063
42096
  geremail.info
42097
+ gerenc.host
42064
42098
  gerenciagran.com
42065
42099
  gergilimembran.com
42066
42100
  gerhanajitu.net
@@ -42319,6 +42353,7 @@ getyougadgets.com
42319
42353
  getyourbook.site
42320
42354
  getyourstudy.ru
42321
42355
  getyourtantraon.com
42356
+ getzradonpros.net
42322
42357
  geuur.live
42323
42358
  gevemarket.site
42324
42359
  gewinner-pose.com
@@ -44501,6 +44536,7 @@ groupe-psa.cf
44501
44536
  groupe-psa.gq
44502
44537
  groupe-psa.ml
44503
44538
  groupe-psa.tk
44539
+ groupe.cd
44504
44540
  groupfunds.club
44505
44541
  groupkami.com
44506
44542
  groupmaidat.com
@@ -49854,6 +49890,7 @@ ieattach.ml
49854
49890
  iecrater.com
49855
49891
  iecusa.net
49856
49892
  iedindon.ml
49893
+ ieeeves.org
49857
49894
  iefbcieuf.cf
49858
49895
  iefbcieuf.ml
49859
49896
  iefbcieuf.tk
@@ -50829,7 +50866,6 @@ infinityangelhealingpathways.com
50829
50866
  infinitybooksjapan.org
50830
50867
  infinityclasses.info
50831
50868
  infinityclippingpath.com
50832
- infis.net.ru
50833
50869
  infitter.ru
50834
50870
  inflammationpills.info
50835
50871
  inflatableslife.com
@@ -56348,6 +56384,7 @@ kitchentvs.ru
56348
56384
  kite008.xyz
56349
56385
  kitedrooperver.ru
56350
56386
  kitefly.pl
56387
+ kitela.work
56351
56388
  kiteshot.ru
56352
56389
  kitesportklop.ru
56353
56390
  kitesurfinguonline.pl
@@ -57383,6 +57420,7 @@ kuatocokjaran.gq
57383
57420
  kuatocokjaran.ml
57384
57421
  kuatocokjaran.tk
57385
57422
  kuba-nedv.ru
57423
+ kubeflow.info
57386
57424
  kubqs.live
57387
57425
  kubzone.ru
57388
57426
  kuchenmobel-berlin.ovh
@@ -57860,6 +57898,7 @@ labogili.ga
57860
57898
  labontemty.com
57861
57899
  laboralistascoruna.com
57862
57900
  laboratortehnicadentara.ro
57901
+ laboratoryreport.win
57863
57902
  labored673vl.online
57864
57903
  laboriously.com
57865
57904
  laborstart.org
@@ -59032,6 +59071,7 @@ lesabahis40.com
59032
59071
  lesabahis48.com
59033
59072
  lesabahis49.com
59034
59073
  lesabahis55.com
59074
+ lesabahis90.com
59035
59075
  lesastroi.ru
59036
59076
  lesbugs.com
59037
59077
  lesfineslamesdechicoutimi.com
@@ -61821,7 +61861,6 @@ lyaliume.site
61821
61861
  lyamda.ru
61822
61862
  lybaba.xyz
61823
61863
  lybe.info
61824
- lyceum-life.com.ru
61825
61864
  lydia-uniform.com
61826
61865
  lydias-scrubs.com
61827
61866
  lydiascrubs.com
@@ -62047,6 +62086,7 @@ mabterssur.ml
62047
62086
  mabterssur.tk
62048
62087
  mabuklagi.ga
62049
62088
  mabulareserve.com
62089
+ mabv.club
62050
62090
  macaniuo235.cf
62051
62091
  macankumbang.com
62052
62092
  macaoguojihui.com
@@ -65477,6 +65517,7 @@ mft9864784.xyz
65477
65517
  mft9867978.xyz
65478
65518
  mft9876343.xyz
65479
65519
  mft9883173.xyz
65520
+ mft9909394.xyz
65480
65521
  mft9911897.xyz
65481
65522
  mft9920868.xyz
65482
65523
  mfuil.us
@@ -66800,6 +66841,7 @@ modetoxcenter.com
66800
66841
  modety.online
66801
66842
  modhack.net
66802
66843
  modicadacademy.com
66844
+ modikulp.com
66803
66845
  modish.net
66804
66846
  modjunkies.com
66805
66847
  modkjaj.site
@@ -67287,6 +67329,7 @@ mormoncoffee.com
67287
67329
  mornayoovm.space
67288
67330
  mornhfas.org.ua
67289
67331
  morningstarkafe.xyz
67332
+ morningstiffnesspodcast.org
67290
67333
  morningtw.com
67291
67334
  mornsoft.com
67292
67335
  morogamers.com
@@ -67650,6 +67693,7 @@ mrchinh.com
67650
67693
  mrclipper.com
67651
67694
  mrcraftyconsultant.com
67652
67695
  mrctacoma.com
67696
+ mrdeeps.ml
67653
67697
  mrdevilstore.com
67654
67698
  mrdjg.live
67655
67699
  mrdomino99.org
@@ -69337,7 +69381,6 @@ namste99.com
69337
69381
  namtinh.top
69338
69382
  namtovarovedam.ru
69339
69383
  namtruong318.com
69340
- namunathapa.com.np
69341
69384
  namuoutlets.site
69342
69385
  namushops.site
69343
69386
  namuwikiusercontent.com
@@ -70074,6 +70117,7 @@ net-piyango.biz
70074
70117
  net-privichkam.ru
70075
70118
  net-solution.info
70076
70119
  net.com
70120
+ net.ru
70077
70121
  net191.com
70078
70122
  net1mail.com
70079
70123
  net2222.com
@@ -74655,6 +74699,7 @@ osfujhtwrblkigbsqeo.ml
74655
74699
  osfujhtwrblkigbsqeo.tk
74656
74700
  osg168live.asia
74657
74701
  osg168live.us
74702
+ osg777.link
74658
74703
  osgame.live
74659
74704
  osgame.online
74660
74705
  osgpoker.us
@@ -75341,6 +75386,7 @@ p6udt9.us
75341
75386
  p71ce1m.com
75342
75387
  p7665.com
75343
75388
  p7998.com
75389
+ p7n39rellip7.best
75344
75390
  p8oan2gwrpbpvbh.cf
75345
75391
  p8oan2gwrpbpvbh.ga
75346
75392
  p8oan2gwrpbpvbh.gq
@@ -77413,6 +77459,7 @@ pidcockmarketing.com
77413
77459
  pidemudanza.com
77414
77460
  pidmail.com
77415
77461
  pidoseme.online
77462
+ pidouno.com
77416
77463
  pidox.org
77417
77464
  piebombing.com
77418
77465
  piececoun.icu
@@ -77592,6 +77639,7 @@ pinsonian.org
77592
77639
  pinsup.ru
77593
77640
  pintaresfacilconsapolin.com
77594
77641
  pintasticapp.com
77642
+ pintech.ru
77595
77643
  pintechpinball.com
77596
77644
  pinterest-seo.online
77597
77645
  pinterests.pro
@@ -79060,7 +79108,6 @@ powerhousedyno.com
79060
79108
  powerin.site
79061
79109
  powerlea.xyz
79062
79110
  powerlear.xyz
79063
- powerlink.com.np
79064
79111
  powermass.site
79065
79112
  powerml.racing
79066
79113
  powerpages.website
@@ -79588,6 +79635,7 @@ prilution.info
79588
79635
  prim1v.us
79589
79636
  primabananen.net
79590
79637
  primalburnkenburge.com
79638
+ primaryale.com
79591
79639
  primaryvideos.com
79592
79640
  primasecure.cd
79593
79641
  primate.de
@@ -81618,6 +81666,7 @@ quanaril.cf
81618
81666
  quanaril.com
81619
81667
  quanaril.ga
81620
81668
  quanaril.ml
81669
+ quandahui.com
81621
81670
  quangcaoso1.net
81622
81671
  quant-heyr.pro
81623
81672
  quant-rr.pro
@@ -82308,6 +82357,7 @@ ragzwtna4ozrbf.tk
82308
82357
  rahabionic.com
82309
82358
  rahavpn.men
82310
82359
  rahimis.com
82360
+ rahul.cyou
82311
82361
  raiasu.cf
82312
82362
  raiasu.ga
82313
82363
  raiasu.gq
@@ -86176,6 +86226,7 @@ rvb.ro
86176
86226
  rvbspending.com
86177
86227
  rvctf.com
86178
86228
  rvdogs.com
86229
+ rvemold.com
86179
86230
  rviixj.us
86180
86231
  rvjtudarhs.cf
86181
86232
  rvjtudarhs.ga
@@ -87545,6 +87596,7 @@ savethechildrenactionnetwork.com
87545
87596
  savetimeerr.fun
87546
87597
  saveuhealth.com
87547
87598
  savevid.ga
87599
+ saveyourgadget.com
87548
87600
  savingallhomes.com
87549
87601
  savingnyhomes.com
87550
87602
  savingsearcher.com
@@ -87592,6 +87644,7 @@ saymeow.de
87592
87644
  saymuscge.cf
87593
87645
  saymuscge.ga
87594
87646
  saymuscge.ml
87647
+ saynigger.com
87595
87648
  saynotospams.com
87596
87649
  sayonara.gq
87597
87650
  sayonara.ml
@@ -87911,6 +87964,7 @@ screenvel.com
87911
87964
  screwdon.recipes
87912
87965
  screwdriveraction.com
87913
87966
  screwthe.xyz
87967
+ scribb.eu
87914
87968
  scribble.uno
87915
87969
  scribeorigins.org
87916
87970
  script.click
@@ -90103,6 +90157,7 @@ simplesport.ru
90103
90157
  simpletextmarketing.com
90104
90158
  simpleverification.com
90105
90159
  simpleverni.icu
90160
+ simplexion.pm
90106
90161
  simplictylegal.com
90107
90162
  simplus.com.br
90108
90163
  simply-email.bid
@@ -95360,6 +95415,7 @@ tamtam-topnews.site
95360
95415
  tamu99.info
95361
95416
  tamu99.net
95362
95417
  tamuhost.me
95418
+ tan9595.com
95363
95419
  tanahsubur.net
95364
95420
  tandberggroup.com
95365
95421
  tandbergonline.com
@@ -96519,6 +96575,7 @@ test130.com
96519
96575
  test324t6234w5y.ru
96520
96576
  testa-lot.net
96521
96577
  testadobe.ru
96578
+ testbnk.com
96522
96579
  testclean.org
96523
96580
  testclubs.com
96524
96581
  testdom34533663.host
@@ -98168,6 +98225,7 @@ tintuceva.org
98168
98225
  tintucphunu.org
98169
98226
  tinviahe.top
98170
98227
  tinybt.com
98228
+ tinyheight.com
98171
98229
  tinymill.org
98172
98230
  tinypc.reviews
98173
98231
  tinypc.tech
@@ -98413,6 +98471,7 @@ tjuew56d0xqmt.ga
98413
98471
  tjuew56d0xqmt.gq
98414
98472
  tjuew56d0xqmt.ml
98415
98473
  tjuew56d0xqmt.tk
98474
+ tjuln.com
98416
98475
  tjyqw.info
98417
98476
  tjzbd.com
98418
98477
  tk-intercom.ru
@@ -101663,6 +101722,7 @@ ucq9vbhc9mhvp3bmge6.gq
101663
101722
  ucq9vbhc9mhvp3bmge6.ml
101664
101723
  ucr6pb.site
101665
101724
  ucroyal09.com
101725
+ ucsoft.biz
101666
101726
  uctqoj.us
101667
101727
  uctwh.us
101668
101728
  ucupdong.ml
@@ -104225,6 +104285,7 @@ vestgreensig.cf
104225
104285
  vestgreensig.ga
104226
104286
  vestgreensig.gq
104227
104287
  vestgreensig.tk
104288
+ vestigeschool.com
104228
104289
  vestimed.ru
104229
104290
  vestnikao.ru
104230
104291
  vestniktm.ru
@@ -104357,6 +104418,7 @@ vhntp15yadrtz0.gq
104357
104418
  vhntp15yadrtz0.ml
104358
104419
  vhntp15yadrtz0.tk
104359
104420
  vhobbi.ru
104421
+ vhoff.com
104360
104422
  vhpsc.us
104361
104423
  vhw5ie.us
104362
104424
  vhwiz8.us
@@ -105451,6 +105513,7 @@ volumetudo.website
105451
105513
  volumkas.cf
105452
105514
  volunteergarden.org
105453
105515
  voluptuary.site
105516
+ volvefloor.com
105454
105517
  volvo-ab.cf
105455
105518
  volvo-ab.ga
105456
105519
  volvo-ab.gq
@@ -111151,6 +111214,7 @@ xtremeventure.com
111151
111214
  xtremewebtraffic.net
111152
111215
  xtrstories.com
111153
111216
  xtrstudios.com
111217
+ xtrtarget.com
111154
111218
  xtrzeer.fun
111155
111219
  xtubemate.site
111156
111220
  xtuc.com
@@ -111703,7 +111767,6 @@ yachassa09.com
111703
111767
  yachassa16.com
111704
111768
  yackir.store
111705
111769
  yacxrz.pl
111706
- yadavnaresh.com.np
111707
111770
  yadegarigift.icu
111708
111771
  yadkincounty.org
111709
111772
  yadong4.com
@@ -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
@@ -631,7 +631,6 @@ iveco
631
631
  jaguar
632
632
  java
633
633
  jcb
634
- jcp
635
634
  je
636
635
  jeep
637
636
  jetzt
@@ -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": "1605483437.0.0",
4
+ "version": "1606065366.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: '1605483437'
4
+ version: '1606065366'
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-15 00:00:00.000000000 Z
11
+ date: 2020-11-22 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/v1606065366
230
+ documentation_uri: https://github.com/fnando/email_data/tree/v1606065366/README.md
231
+ license_uri: https://github.com/fnando/email_data/tree/v1606065366/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
  - - ">="