ped 0.1.0
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 +7 -0
- data/.github/ISSUE_TEMPLATE.md +11 -0
- data/.github/workflows/docs.yml +57 -0
- data/.github/workflows/rspec.yml +51 -0
- data/.github/workflows/rubocop.yml +21 -0
- data/.gitignore +11 -0
- data/.mdlrc +1 -0
- data/.rspec +3 -0
- data/.rubocop-md.yml +20 -0
- data/.rubocop.yml +27 -0
- data/.ruby-version +1 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +34 -0
- data/LICENSE.txt +21 -0
- data/README.md +48 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/forspell.dict +7 -0
- data/gemfiles/rubocop.gemfile +6 -0
- data/gemfiles/rubocop.gemfile.lock +66 -0
- data/lib/ped.rb +18 -0
- data/lib/ped/domains.rb +3788 -0
- data/lib/ped/version.rb +5 -0
- data/ped.gemspec +26 -0
- metadata +71 -0
data/lib/ped/version.rb
ADDED
data/ped.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/ped/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'ped'
|
7
|
+
spec.version = Ped::VERSION
|
8
|
+
spec.authors = ['Igor Alexandrov']
|
9
|
+
spec.email = ['igor.alexandrov@gmail.com']
|
10
|
+
|
11
|
+
spec.summary = 'PED – check you email domain over list of Public Email Domains. Based on data from this GIST https://gist.github.com/tbrianjones/5992856'
|
12
|
+
spec.homepage = 'https://github.com/igor-alexandrov/ped'
|
13
|
+
spec.license = 'MIT'
|
14
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
|
15
|
+
|
16
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
17
|
+
|
18
|
+
# Specify which files should be added to the gem when it is released.
|
19
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
20
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
21
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
22
|
+
end
|
23
|
+
spec.bindir = 'exe'
|
24
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
|
+
spec.require_paths = ['lib']
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ped
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Igor Alexandrov
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-01-19 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email:
|
15
|
+
- igor.alexandrov@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".github/ISSUE_TEMPLATE.md"
|
21
|
+
- ".github/workflows/docs.yml"
|
22
|
+
- ".github/workflows/rspec.yml"
|
23
|
+
- ".github/workflows/rubocop.yml"
|
24
|
+
- ".gitignore"
|
25
|
+
- ".mdlrc"
|
26
|
+
- ".rspec"
|
27
|
+
- ".rubocop-md.yml"
|
28
|
+
- ".rubocop.yml"
|
29
|
+
- ".ruby-version"
|
30
|
+
- ".travis.yml"
|
31
|
+
- CODE_OF_CONDUCT.md
|
32
|
+
- Gemfile
|
33
|
+
- Gemfile.lock
|
34
|
+
- LICENSE.txt
|
35
|
+
- README.md
|
36
|
+
- Rakefile
|
37
|
+
- bin/console
|
38
|
+
- bin/setup
|
39
|
+
- forspell.dict
|
40
|
+
- gemfiles/rubocop.gemfile
|
41
|
+
- gemfiles/rubocop.gemfile.lock
|
42
|
+
- lib/ped.rb
|
43
|
+
- lib/ped/domains.rb
|
44
|
+
- lib/ped/version.rb
|
45
|
+
- ped.gemspec
|
46
|
+
homepage: https://github.com/igor-alexandrov/ped
|
47
|
+
licenses:
|
48
|
+
- MIT
|
49
|
+
metadata:
|
50
|
+
homepage_uri: https://github.com/igor-alexandrov/ped
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options: []
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: 2.6.0
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
requirements: []
|
66
|
+
rubygems_version: 3.1.4
|
67
|
+
signing_key:
|
68
|
+
specification_version: 4
|
69
|
+
summary: PED – check you email domain over list of Public Email Domains. Based on
|
70
|
+
data from this GIST https://gist.github.com/tbrianjones/5992856
|
71
|
+
test_files: []
|