email_check 0.1.4 → 1.0.2
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 +5 -5
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.travis.yml +12 -3
- data/README.md +36 -20
- data/SECURITY.md +14 -0
- data/email_check.gemspec +2 -2
- data/gemfiles/activemodel5.gemfile +5 -0
- data/gemfiles/activemodel6.gemfile +5 -0
- data/lib/email_check/email_address.rb +7 -6
- data/lib/email_check/email_validator.rb +29 -15
- data/lib/email_check/helper_methods.rb +27 -0
- data/lib/email_check/version.rb +1 -1
- data/lib/email_check.rb +1 -0
- data/vendor/blacklist.yml +1 -0
- data/vendor/free.yml +512 -1
- metadata +15 -11
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: email_check
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Darshan Patil
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '2.3'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '2.3'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 12.3.3
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 12.3.3
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -116,6 +116,7 @@ executables: []
|
|
116
116
|
extensions: []
|
117
117
|
extra_rdoc_files: []
|
118
118
|
files:
|
119
|
+
- ".github/workflows/codeql-analysis.yml"
|
119
120
|
- ".gitignore"
|
120
121
|
- ".rspec"
|
121
122
|
- ".travis.yml"
|
@@ -123,13 +124,17 @@ files:
|
|
123
124
|
- LICENSE.txt
|
124
125
|
- README.md
|
125
126
|
- Rakefile
|
127
|
+
- SECURITY.md
|
126
128
|
- bin/console
|
127
129
|
- bin/setup
|
128
130
|
- email_check.gemspec
|
129
131
|
- gemfiles/activemodel4.gemfile
|
132
|
+
- gemfiles/activemodel5.gemfile
|
133
|
+
- gemfiles/activemodel6.gemfile
|
130
134
|
- lib/email_check.rb
|
131
135
|
- lib/email_check/email_address.rb
|
132
136
|
- lib/email_check/email_validator.rb
|
137
|
+
- lib/email_check/helper_methods.rb
|
133
138
|
- lib/email_check/version.rb
|
134
139
|
- vendor/blacklist.yml
|
135
140
|
- vendor/blocked_usernames.yml
|
@@ -139,7 +144,7 @@ homepage: https://github.com/dapatil/email_check
|
|
139
144
|
licenses:
|
140
145
|
- MIT
|
141
146
|
metadata: {}
|
142
|
-
post_install_message:
|
147
|
+
post_install_message:
|
143
148
|
rdoc_options: []
|
144
149
|
require_paths:
|
145
150
|
- lib
|
@@ -154,9 +159,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
159
|
- !ruby/object:Gem::Version
|
155
160
|
version: '0'
|
156
161
|
requirements: []
|
157
|
-
|
158
|
-
|
159
|
-
signing_key:
|
162
|
+
rubygems_version: 3.0.9
|
163
|
+
signing_key:
|
160
164
|
specification_version: 4
|
161
165
|
summary: ActiveModel email validator. Checks MX records. Ships with lists of free,
|
162
166
|
disposable email providers
|