email_data 1601158120 → 1601161287

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: 975f3b900d8f552a53d6ed0419633cc3516386f3f9cbad03bec8611e7c117af9
4
- data.tar.gz: 81e5049bf46bf4dfc99c5e87e6db214cd77a3c6b88dae79b0e04b619d9b9b511
3
+ metadata.gz: 4e529053ab71473a559408dc27a2399cd4eaa40c3205813e857420344323c06b
4
+ data.tar.gz: 1e474b0c523a3121164401c18b32a64ea1c2f869a702a45729b46190b97b5f08
5
5
  SHA512:
6
- metadata.gz: e5a04e3e345cc90cd7c01e18eab3af2337269403b82a868533fef34d511dec66c1a60e2e9c0b9ddb7f03d499b9e8a1aa5dbb56bbdf5b24a376cab4a80626e7f1
7
- data.tar.gz: 05c7ead0699baea5a25041897b86168235134c1843d3d4d83aa57b4a41b5ebc3b54f3e5035706dc210416c4bacb6fe1de1febba2db147c7349664428a14d1235
6
+ metadata.gz: 74a5869320b9dc37fb5b5548260e579bd63cbcf9454d779378f8208bd8cf036a9d0d2aa45cf067cc0cb796eb8158bde41fe6b81d2777cbe8dfa5f4c80ab37523
7
+ data.tar.gz: 6e8c2c999e998bb022ad5dfe922d726264312eee4ff0cbc26268faa06356a1589a823542a450fa420b4fa6571aec18d55102e08eea7f178a46a6f8f7a77810b9
data/.gitignore CHANGED
@@ -6,5 +6,6 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
- /data/disposable/**/**
9
+ /data/disposable/**/*
10
+ /data/json/**/*
10
11
  Gemfile.lock
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1601158120
1
+ 1601161287
@@ -13,8 +13,6 @@ require "logger"
13
13
  require "simpleidn"
14
14
  require "timeout"
15
15
  require "active_support/all"
16
- require "whois"
17
- require "whois-parser"
18
16
  require "root_domain"
19
17
 
20
18
  USER_AGENT = [
@@ -0,0 +1,37 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ source $HOME/.zsh/exports.sh
6
+ source $HOME/.zsh/asdf.sh
7
+
8
+ git pull --rebase
9
+ git push
10
+
11
+ ./bin/sync
12
+
13
+ git_status=$(git status 2> /dev/null | tr "\\n" " ")
14
+
15
+ if [[ "$git_status" =~ "nothing to commit" ]]; then
16
+ terminal-notifier \
17
+ -message "No changes detected. Skipping new gem." \
18
+ -ignoreDnD \
19
+ -title "email_data" \
20
+ -group homebrew \
21
+ &> /dev/null
22
+ exit
23
+ fi
24
+
25
+ date "+%s" > VERSION
26
+
27
+ version=$(cat VERSION)
28
+ package_json=$(cat package.json | jq --arg version "$version" '.version = $version')
29
+
30
+ echo $package_json | jq --tab > package.json
31
+
32
+ git add .
33
+ git commit -m "Bump up version."
34
+ git push
35
+
36
+ ./bin/publish-gem
37
+ ./bin/publish-npm
@@ -2,31 +2,9 @@
2
2
 
3
3
  set -e
4
4
 
5
- source $HOME/.zsh/exports.sh
6
- source $HOME/.zsh/asdf.sh
5
+ gem install bundler
6
+ bundle update
7
7
 
8
- git pull --rebase
9
- git push
10
-
11
- ./bin/sync
12
-
13
- git_status=$(git status 2> /dev/null | tr "\\n" " ")
14
-
15
- if [[ "$git_status" =~ "nothing to commit" ]]; then
16
- terminal-notifier \
17
- -message "No changes detected. Skipping new gem." \
18
- -ignoreDnD \
19
- -title "email_data" \
20
- -group homebrew \
21
- &> /dev/null
22
- exit
23
- fi
24
-
25
- date "+%s" > VERSION
26
-
27
- git add .
28
- git commit -m "Bump up version."
29
- git push
30
8
  rake release
31
9
 
32
10
  terminal-notifier \
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ for input in $(ls -1 data/*.txt); do
6
+ name=$(basename $input)
7
+ output=data/json/"${name%.txt}.json"
8
+ jq -R -s -c 'split("\n")' < $input > $output
9
+ done
10
+
11
+ npm publish --public
@@ -12950,6 +12950,7 @@ atozconference.com
12950
12950
  atp-dz.com
12951
12951
  atpfinals.ru
12952
12952
  atpworldtour-2016.com
12953
+ atqpq.live
12953
12954
  atrais-kredits24.com
12954
12955
  atrakcje-nestor.pl
12955
12956
  atrakcjedladziecii.pl
@@ -8,7 +8,9 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Nando Vieira"]
9
9
  spec.email = ["me@fnando.com"]
10
10
 
11
- spec.summary = "Data"
11
+ spec.summary = "This project is a compilation of datasets related to " \
12
+ "emails. Includes disposable emails, disposable " \
13
+ "domains, and free email services."
12
14
  spec.description = spec.summary
13
15
  spec.homepage = "https://github.com/fnando/email_data"
14
16
  spec.license = "MIT"
@@ -27,6 +29,8 @@ Gem::Specification.new do |spec|
27
29
  spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
28
30
  spec.require_paths = ["lib"]
29
31
 
32
+ spec.add_development_dependency "activesupport"
33
+ spec.add_development_dependency "aitch"
30
34
  spec.add_development_dependency "bundler"
31
35
  spec.add_development_dependency "minitest"
32
36
  spec.add_development_dependency "minitest-utils"
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@fnando/email_data",
3
+ "description": "This project is a compilation of datasets related to emails. Includes disposable emails, disposable domains, and free email services.",
4
+ "version": "1601161287",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/fnando/email_data.git"
9
+ },
10
+ "homepage": "https://github.com/fnando/email_data",
11
+ "author": "Nando Vieira <me@fnando.com>",
12
+ "files": [
13
+ "package.json",
14
+ "README.md",
15
+ "LICENSE.txt",
16
+ "data/json/**/*.json"
17
+ ]
18
+ }
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: '1601158120'
4
+ version: '1601161287'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira
@@ -10,6 +10,34 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2020-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: aitch
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
13
41
  - !ruby/object:Gem::Dependency
14
42
  name: bundler
15
43
  requirement: !ruby/object:Gem::Requirement
@@ -122,7 +150,8 @@ dependencies:
122
150
  - - ">="
123
151
  - !ruby/object:Gem::Version
124
152
  version: '0'
125
- description: Data
153
+ description: This project is a compilation of datasets related to emails. Includes
154
+ disposable emails, disposable domains, and free email services.
126
155
  email:
127
156
  - me@fnando.com
128
157
  executables: []
@@ -141,7 +170,9 @@ files:
141
170
  - VERSION
142
171
  - bin/console
143
172
  - bin/helpers.rb
173
+ - bin/publish
144
174
  - bin/publish-gem
175
+ - bin/publish-npm
145
176
  - bin/setup
146
177
  - bin/sync
147
178
  - bin/sync-disposable-emails
@@ -158,6 +189,7 @@ files:
158
189
  - email_data.gemspec
159
190
  - lib/email_data.rb
160
191
  - lib/email_data/version.rb
192
+ - package.json
161
193
  homepage: https://github.com/fnando/email_data
162
194
  licenses:
163
195
  - MIT
@@ -182,5 +214,6 @@ requirements: []
182
214
  rubygems_version: 3.1.2
183
215
  signing_key:
184
216
  specification_version: 4
185
- summary: Data
217
+ summary: This project is a compilation of datasets related to emails. Includes disposable
218
+ emails, disposable domains, and free email services.
186
219
  test_files: []