guessmail 0.1.1 → 0.3.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 +5 -5
- data/.github/workflows/publish.yml +24 -0
- data/.github/workflows/test.yml +54 -0
- data/.tool-versions +1 -0
- data/Gemfile +3 -1
- data/LICENSE.txt +21 -0
- data/README.md +92 -11
- data/Rakefile +3 -1
- data/bin/console +4 -3
- data/bin/guessmail +29 -26
- data/guessmail.gemspec +20 -17
- data/lib/guessmail/version.rb +3 -1
- data/lib/guessmail.rb +25 -1
- data/lib/templates.rb +129 -81
- metadata +49 -21
- data/.ruby-gemset +0 -1
- data/.ruby-version +0 -1
- data/.travis.yml +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 372a27c73e9b4551a1a829601df8327b5756baa35c87048170d50c0eb8e1dd29
|
4
|
+
data.tar.gz: 76079eb13a70adaab6e6fa8c8297133c9300b3a9149b3815530ff51cea7fea34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8cb64950b388523ce5a10a5482b7d0ab479a1582aaad7f0722968070e43a6676f90d40f43dd87fb46067f2fedfd6ebd09c5c346907445ecf661387c30fd2287
|
7
|
+
data.tar.gz: 2f242f0e52a45cdae1324f1e5a66d47a35074c62f39f350e510e4f945d0a3ff8d7ae1c94ebfc5092b741640586f484c129142396651ed45bf9c7e46f6176a900
|
@@ -0,0 +1,24 @@
|
|
1
|
+
name: Publish
|
2
|
+
|
3
|
+
on:
|
4
|
+
release:
|
5
|
+
types: [published]
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
build:
|
9
|
+
name: Publish Packages
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
|
15
|
+
- name: Set up Ruby
|
16
|
+
uses: ruby/setup-ruby@v1
|
17
|
+
with:
|
18
|
+
bundler-cache: true
|
19
|
+
|
20
|
+
- name: Publish to RubyGems
|
21
|
+
uses: dawidd6/action-publish-gem@v1
|
22
|
+
with:
|
23
|
+
api_key: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
|
24
|
+
|
@@ -0,0 +1,54 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
|
6
|
+
push:
|
7
|
+
branches: [ develop, master ]
|
8
|
+
|
9
|
+
env:
|
10
|
+
GIT_COMMIT_SHA: ${{ github.sha }}
|
11
|
+
GIT_BRANCH: ${{ github.ref }}
|
12
|
+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
13
|
+
|
14
|
+
jobs:
|
15
|
+
|
16
|
+
lint:
|
17
|
+
runs-on: ubuntu-latest
|
18
|
+
name: lint ${{ matrix.ruby }}
|
19
|
+
strategy:
|
20
|
+
fail-fast: false
|
21
|
+
matrix:
|
22
|
+
ruby: [ '2.6.9', '2.7.5', '3.0.3', '3.1.1' ]
|
23
|
+
|
24
|
+
steps:
|
25
|
+
- uses: actions/checkout@v2
|
26
|
+
- uses: ruby/setup-ruby@v1
|
27
|
+
with:
|
28
|
+
ruby-version: ${{ matrix.ruby }}
|
29
|
+
bundler-cache: true
|
30
|
+
|
31
|
+
- name: StandardRB
|
32
|
+
continue-on-error: ${{ matrix.experimental }}
|
33
|
+
run: bundle exec standardrb --parallel --format progress
|
34
|
+
|
35
|
+
test:
|
36
|
+
needs: [ lint ]
|
37
|
+
runs-on: ubuntu-latest
|
38
|
+
name: test ${{ matrix.ruby }}
|
39
|
+
strategy:
|
40
|
+
fail-fast: false
|
41
|
+
matrix:
|
42
|
+
ruby: [ '2.6.9', '2.7.5', '3.0.3', '3.1.1' ]
|
43
|
+
|
44
|
+
steps:
|
45
|
+
- uses: actions/checkout@v2
|
46
|
+
- uses: ruby/setup-ruby@v1
|
47
|
+
with:
|
48
|
+
ruby-version: ${{ matrix.ruby }}
|
49
|
+
bundler-cache: true
|
50
|
+
|
51
|
+
- name: Test
|
52
|
+
continue-on-error: ${{ matrix.experimental }}
|
53
|
+
run: bundle exec rake
|
54
|
+
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 3.1.1
|
data/Gemfile
CHANGED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2022 Kerem Bozdas
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, 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,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,8 +1,68 @@
|
|
1
|
-
# Guessmail
|
1
|
+
# Guessmail 💌
|
2
2
|
|
3
|
-
|
3
|
+
[](https://github.com/krmbzds/guessmail/actions/workflows/test.yml)
|
4
|
+
[](https://coveralls.io/github/krmbzds/guessmail)
|
5
|
+
[](https://codeclimate.com/github/krmbzds/guessmail/maintainability)
|
6
|
+
[](https://rubygems.org/gems/guessmail)
|
7
|
+
[](https://rubygems.org/gems/guessmail)
|
4
8
|
|
5
|
-
|
9
|
+
|
10
|
+
[**guessmail**][Guessmail] helps you find possible email addresses of a person.
|
11
|
+
|
12
|
+
## Usage
|
13
|
+
|
14
|
+
```
|
15
|
+
Usage: guessmail [-e] [-l LANGUAGE] first [middle] last domain
|
16
|
+
-e, --extended Include less common email combinations
|
17
|
+
-l, --language LANGUAGE Set language
|
18
|
+
-h, --help Shows help message
|
19
|
+
-v, --version Shows version
|
20
|
+
```
|
21
|
+
|
22
|
+
## Examples
|
23
|
+
|
24
|
+
Let's say you want to find the email address of Bill Gates.
|
25
|
+
|
26
|
+
```sh
|
27
|
+
$ guessmail Bill Gates microsoft.com
|
28
|
+
```
|
29
|
+
|
30
|
+
This will return you a set of possible emails:
|
31
|
+
|
32
|
+
```
|
33
|
+
bill@microsoft.com
|
34
|
+
gates@microsoft.com
|
35
|
+
billgates@microsoft.com
|
36
|
+
bill.gates@microsoft.com
|
37
|
+
bgates@microsoft.com
|
38
|
+
b.gates@microsoft.com
|
39
|
+
billg@microsoft.com <-- This is the actual email address
|
40
|
+
bill.g@microsoft.com
|
41
|
+
bg@microsoft.com
|
42
|
+
b.g@microsoft.com
|
43
|
+
gatesbill@microsoft.com
|
44
|
+
gates.bill@microsoft.com
|
45
|
+
gatesb@microsoft.com
|
46
|
+
gates.b@microsoft.com
|
47
|
+
gbill@microsoft.com
|
48
|
+
g.bill@microsoft.com
|
49
|
+
gb@microsoft.com
|
50
|
+
g.b@microsoft.com
|
51
|
+
```
|
52
|
+
|
53
|
+
You can then use an email verifier service or use other methods to find out which one of these email addresses belong to the person you are searching for.
|
54
|
+
|
55
|
+
[guessmail][Guessmail] can transliterate non-ASCII input since it uses [tate][tate] under the hood. Try it out!
|
56
|
+
|
57
|
+
```sh
|
58
|
+
guessmail Игорь Богданов lex.bg -el bg
|
59
|
+
guessmail Günter Außem gmx.de --language de
|
60
|
+
guessmail Yukihiro Matz Matsumoto ruby-lang.org
|
61
|
+
```
|
62
|
+
|
63
|
+
## Is it any good?
|
64
|
+
|
65
|
+
Yes.
|
6
66
|
|
7
67
|
## Installation
|
8
68
|
|
@@ -14,23 +74,44 @@ gem 'guessmail'
|
|
14
74
|
|
15
75
|
And then execute:
|
16
76
|
|
17
|
-
|
77
|
+
```sh
|
78
|
+
$ bundle
|
79
|
+
```
|
18
80
|
|
19
81
|
Or install it yourself as:
|
20
82
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
83
|
+
```sh
|
84
|
+
$ gem install guessmail
|
85
|
+
```
|
26
86
|
|
27
87
|
## Development
|
28
88
|
|
29
89
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
90
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org]
|
91
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org][RubyGems].
|
32
92
|
|
33
93
|
## Contributing
|
34
94
|
|
35
|
-
|
95
|
+
1. [Fork the repository][Fork]
|
96
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
97
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
98
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
99
|
+
5. Create a new Pull Request
|
100
|
+
|
101
|
+
### Donations ❤️
|
102
|
+
|
103
|
+
You can donate me at [Liberapay][Donation]. Thanks! ☕️
|
104
|
+
|
105
|
+
## License
|
106
|
+
|
107
|
+
Copyright © 2016-2022 [Kerem Bozdas][Personal Webpage]
|
108
|
+
|
109
|
+
This project is available under the terms of the [MIT License][License].
|
36
110
|
|
111
|
+
[Donation]: https://liberapay.com/krmbzds/donate
|
112
|
+
[Fork]: https://github.com/krmbzds/guessmail/fork
|
113
|
+
[Guessmail]: https://github.com/krmbzds/guessmail
|
114
|
+
[License]: http://kerem.mit-license.org
|
115
|
+
[Personal Webpage]: http://kerembozdas.com
|
116
|
+
[RubyGems]: https://rubygems.org
|
117
|
+
[Tate]: https://github.com/krmbzds/tate
|
data/Rakefile
CHANGED
data/bin/console
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
|
-
require
|
4
|
-
require
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'guessmail'
|
5
6
|
|
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.
|
@@ -10,5 +11,5 @@ require "guessmail"
|
|
10
11
|
# require "pry"
|
11
12
|
# Pry.start
|
12
13
|
|
13
|
-
require
|
14
|
+
require 'irb'
|
14
15
|
IRB.start
|
data/bin/guessmail
CHANGED
@@ -1,38 +1,41 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
#
|
2
|
+
# frozen_string_literal: true
|
3
3
|
|
4
4
|
lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
|
5
5
|
$LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
|
6
6
|
|
7
|
-
require '
|
8
|
-
require '
|
7
|
+
require 'guessmail'
|
8
|
+
require 'optparse'
|
9
9
|
|
10
|
-
|
11
|
-
Usage: guessmail first [middle] last domain
|
10
|
+
options = {}
|
12
11
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
12
|
+
option_parser = OptionParser.new do |opts|
|
13
|
+
opts.banner = 'Usage: guessmail [-e] [-l LANGUAGE] first [middle] last domain'
|
14
|
+
opts.on('-e', '--extended', 'Include less common email combinations') do
|
15
|
+
options[:extended] = true
|
16
|
+
end
|
17
|
+
opts.on('-l LANGUAGE', '--language LANGUAGE', String, 'Set language') do |language|
|
18
|
+
options[:language] = language
|
19
|
+
end
|
20
|
+
opts.on('-h', '--help', 'Shows help message') do
|
21
|
+
options[:help] = opts.help
|
22
|
+
end
|
23
|
+
opts.on('-v', '--version', 'Shows version') do
|
24
|
+
options[:version] = Guessmail::VERSION
|
25
|
+
end
|
26
|
+
end
|
18
27
|
|
19
|
-
|
20
|
-
args = ARGV.map { |x| Tate.transliterate(x.downcase) } # tate'd
|
28
|
+
option_parser.parse!
|
21
29
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
fn, mn, ln = args.values_at(0, 1, 2)
|
30
|
-
fi, mi, li = fn[0], mn[0], ln[0]
|
31
|
-
dn = args[3]
|
32
|
-
STDOUT.write $FML % {fn: fn, mn: mn, ln: ln, fi: fi, mi: mi, li: li, dn: dn}
|
30
|
+
result =
|
31
|
+
if options[:help]
|
32
|
+
options[:help]
|
33
|
+
elsif options[:version]
|
34
|
+
options[:version]
|
35
|
+
elsif [3, 4].include? ARGV.size
|
36
|
+
Guessmail.guess(ARGV, options)
|
33
37
|
else
|
34
|
-
|
38
|
+
option_parser.help
|
35
39
|
end
|
36
|
-
end
|
37
40
|
|
38
|
-
|
41
|
+
STDOUT.write result
|
data/guessmail.gemspec
CHANGED
@@ -1,25 +1,28 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path("lib", __dir__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require
|
5
|
+
require "guessmail/version"
|
5
6
|
|
6
7
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name
|
8
|
-
spec.version
|
9
|
-
spec.authors
|
10
|
-
spec.email
|
8
|
+
spec.name = "guessmail"
|
9
|
+
spec.version = Guessmail::VERSION
|
10
|
+
spec.authors = ["Kerem Bozdas"]
|
11
|
+
spec.email = ["krmbzds.github@gmail.com"]
|
11
12
|
|
12
|
-
spec.summary
|
13
|
-
spec.description
|
14
|
-
spec.homepage
|
13
|
+
spec.summary = "Find anyone's email address"
|
14
|
+
spec.description = "Find anyone's email address"
|
15
|
+
spec.homepage = "https://github.com/krmbzds/guessmail"
|
15
16
|
|
16
|
-
spec.files
|
17
|
-
spec.bindir
|
18
|
-
spec.executables
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "bin"
|
19
|
+
spec.executables = ["guessmail"]
|
19
20
|
spec.require_paths = ["lib"]
|
20
21
|
|
21
|
-
spec.add_runtime_dependency "tate", "~>
|
22
|
-
spec.add_development_dependency "bundler"
|
23
|
-
spec.add_development_dependency "rake"
|
24
|
-
spec.add_development_dependency "rspec"
|
22
|
+
spec.add_runtime_dependency "tate", "~> 1.7.0"
|
23
|
+
spec.add_development_dependency "bundler"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "rspec"
|
26
|
+
spec.add_development_dependency "standardrb"
|
27
|
+
spec.add_development_dependency "coveralls_reborn"
|
25
28
|
end
|
data/lib/guessmail/version.rb
CHANGED
data/lib/guessmail.rb
CHANGED
@@ -1,5 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path(File.dirname(__FILE__) + "/../lib")
|
4
|
+
$LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
|
5
|
+
|
1
6
|
require "guessmail/version"
|
7
|
+
require "tate"
|
8
|
+
require "templates"
|
2
9
|
|
3
10
|
module Guessmail
|
4
|
-
|
11
|
+
def self.guess(names, options)
|
12
|
+
names.map!(&:downcase)
|
13
|
+
|
14
|
+
dn = names.pop
|
15
|
+
fn = names.shift
|
16
|
+
ln = names.pop
|
17
|
+
mn = names.pop
|
18
|
+
|
19
|
+
params = {fn: fn, mn: mn, ln: ln, fi: fn[0], mi: (mn[0] if mn), li: ln[0], dn: dn}
|
20
|
+
template = if options[:extended]
|
21
|
+
mn ? FMLE : FLE
|
22
|
+
else
|
23
|
+
(mn ? FML : FL)
|
24
|
+
end
|
25
|
+
string = format(template, params)
|
26
|
+
|
27
|
+
Tate.transliterate(string, options[:language])
|
28
|
+
end
|
5
29
|
end
|
data/lib/templates.rb
CHANGED
@@ -1,85 +1,133 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
%{fn}-%{ln}@%{dn}
|
21
|
-
%{fi}-%{ln}@%{dn}
|
22
|
-
%{fn}-%{li}@%{dn}
|
23
|
-
%{fi}-%{li}@%{dn}
|
24
|
-
%{ln}-%{fn}@%{dn}
|
25
|
-
%{ln}-%{fi}@%{dn}
|
26
|
-
%{li}-%{fn}@%{dn}
|
27
|
-
%{li}-%{fi}@%{dn}
|
28
|
-
%{fn}_%{ln}@%{dn}
|
29
|
-
%{fi}_%{ln}@%{dn}
|
30
|
-
%{fn}_%{li}@%{dn}
|
31
|
-
%{fi}_%{li}@%{dn}
|
32
|
-
%{ln}_%{fn}@%{dn}
|
33
|
-
%{ln}_%{fi}@%{dn}
|
34
|
-
%{li}_%{fn}@%{dn}
|
35
|
-
%{li}_%{fi}@%{dn}
|
3
|
+
FL = "%<fn>s@%<dn>s
|
4
|
+
%<ln>s@%<dn>s
|
5
|
+
%<fn>s%<ln>s@%<dn>s
|
6
|
+
%<fn>s.%<ln>s@%<dn>s
|
7
|
+
%<fi>s%<ln>s@%<dn>s
|
8
|
+
%<fi>s.%<ln>s@%<dn>s
|
9
|
+
%<fn>s%<li>s@%<dn>s
|
10
|
+
%<fn>s.%<li>s@%<dn>s
|
11
|
+
%<fi>s%<li>s@%<dn>s
|
12
|
+
%<fi>s.%<li>s@%<dn>s
|
13
|
+
%<ln>s%<fn>s@%<dn>s
|
14
|
+
%<ln>s.%<fn>s@%<dn>s
|
15
|
+
%<ln>s%<fi>s@%<dn>s
|
16
|
+
%<ln>s.%<fi>s@%<dn>s
|
17
|
+
%<li>s%<fn>s@%<dn>s
|
18
|
+
%<li>s.%<fn>s@%<dn>s
|
19
|
+
%<li>s%<fi>s@%<dn>s
|
20
|
+
%<li>s.%<fi>s@%<dn>s
|
36
21
|
"
|
37
22
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
23
|
+
FML = "%<fn>s@%<dn>s
|
24
|
+
%<ln>s@%<dn>s
|
25
|
+
%<fn>s%<ln>s@%<dn>s
|
26
|
+
%<fn>s.%<ln>s@%<dn>s
|
27
|
+
%<fi>s%<ln>s@%<dn>s
|
28
|
+
%<fi>s.%<ln>s@%<dn>s
|
29
|
+
%<fn>s%<li>s@%<dn>s
|
30
|
+
%<fn>s.%<li>s@%<dn>s
|
31
|
+
%<fi>s%<li>s@%<dn>s
|
32
|
+
%<fi>s.%<li>s@%<dn>s
|
33
|
+
%<ln>s%<fn>s@%<dn>s
|
34
|
+
%<ln>s.%<fn>s@%<dn>s
|
35
|
+
%<ln>s%<fi>s@%<dn>s
|
36
|
+
%<ln>s.%<fi>s@%<dn>s
|
37
|
+
%<li>s%<fn>s@%<dn>s
|
38
|
+
%<li>s.%<fn>s@%<dn>s
|
39
|
+
%<li>s%<fi>s@%<dn>s
|
40
|
+
%<li>s.%<fi>s@%<dn>s
|
41
|
+
%<fi>s%<mi>s%<ln>s@%<dn>s
|
42
|
+
%<fi>s%<mi>s.%<ln>s@%<dn>s
|
43
|
+
%<fn>s%<mi>s%<ln>s@%<dn>s
|
44
|
+
%<fn>s.%<mi>s.%<ln>s@%<dn>s
|
45
|
+
%<fn>s%<mn>s%<ln>s@%<dn>s
|
46
|
+
%<fn>s.%<mn>s.%<ln>s@%<dn>s
|
47
|
+
%<mn>s@%<dn>s
|
48
|
+
"
|
49
|
+
|
50
|
+
FLE = "%<fn>s@%<dn>s
|
51
|
+
%<ln>s@%<dn>s
|
52
|
+
%<fn>s%<ln>s@%<dn>s
|
53
|
+
%<fn>s.%<ln>s@%<dn>s
|
54
|
+
%<fi>s%<ln>s@%<dn>s
|
55
|
+
%<fi>s.%<ln>s@%<dn>s
|
56
|
+
%<fn>s%<li>s@%<dn>s
|
57
|
+
%<fn>s.%<li>s@%<dn>s
|
58
|
+
%<fi>s%<li>s@%<dn>s
|
59
|
+
%<fi>s.%<li>s@%<dn>s
|
60
|
+
%<ln>s%<fn>s@%<dn>s
|
61
|
+
%<ln>s.%<fn>s@%<dn>s
|
62
|
+
%<ln>s%<fi>s@%<dn>s
|
63
|
+
%<ln>s.%<fi>s@%<dn>s
|
64
|
+
%<li>s%<fn>s@%<dn>s
|
65
|
+
%<li>s.%<fn>s@%<dn>s
|
66
|
+
%<li>s%<fi>s@%<dn>s
|
67
|
+
%<li>s.%<fi>s@%<dn>s
|
68
|
+
%<fn>s-%<ln>s@%<dn>s
|
69
|
+
%<fi>s-%<ln>s@%<dn>s
|
70
|
+
%<fn>s-%<li>s@%<dn>s
|
71
|
+
%<fi>s-%<li>s@%<dn>s
|
72
|
+
%<ln>s-%<fn>s@%<dn>s
|
73
|
+
%<ln>s-%<fi>s@%<dn>s
|
74
|
+
%<li>s-%<fn>s@%<dn>s
|
75
|
+
%<li>s-%<fi>s@%<dn>s
|
76
|
+
%<fn>s_%<ln>s@%<dn>s
|
77
|
+
%<fi>s_%<ln>s@%<dn>s
|
78
|
+
%<fn>s_%<li>s@%<dn>s
|
79
|
+
%<fi>s_%<li>s@%<dn>s
|
80
|
+
%<ln>s_%<fn>s@%<dn>s
|
81
|
+
%<ln>s_%<fi>s@%<dn>s
|
82
|
+
%<li>s_%<fn>s@%<dn>s
|
83
|
+
%<li>s_%<fi>s@%<dn>s
|
84
|
+
"
|
85
|
+
|
86
|
+
FMLE = "%<fn>s@%<dn>s
|
87
|
+
%<ln>s@%<dn>s
|
88
|
+
%<fn>s%<ln>s@%<dn>s
|
89
|
+
%<fn>s.%<ln>s@%<dn>s
|
90
|
+
%<fi>s%<ln>s@%<dn>s
|
91
|
+
%<fi>s.%<ln>s@%<dn>s
|
92
|
+
%<fn>s%<li>s@%<dn>s
|
93
|
+
%<fn>s.%<li>s@%<dn>s
|
94
|
+
%<fi>s%<li>s@%<dn>s
|
95
|
+
%<fi>s.%<li>s@%<dn>s
|
96
|
+
%<ln>s%<fn>s@%<dn>s
|
97
|
+
%<ln>s.%<fn>s@%<dn>s
|
98
|
+
%<ln>s%<fi>s@%<dn>s
|
99
|
+
%<ln>s.%<fi>s@%<dn>s
|
100
|
+
%<li>s%<fn>s@%<dn>s
|
101
|
+
%<li>s.%<fn>s@%<dn>s
|
102
|
+
%<li>s%<fi>s@%<dn>s
|
103
|
+
%<li>s.%<fi>s@%<dn>s
|
104
|
+
%<fi>s%<mi>s%<ln>s@%<dn>s
|
105
|
+
%<fi>s%<mi>s.%<ln>s@%<dn>s
|
106
|
+
%<fn>s%<mi>s%<ln>s@%<dn>s
|
107
|
+
%<fn>s.%<mi>s.%<ln>s@%<dn>s
|
108
|
+
%<fn>s%<mn>s%<ln>s@%<dn>s
|
109
|
+
%<fn>s.%<mn>s.%<ln>s@%<dn>s
|
110
|
+
%<fn>s-%<ln>s@%<dn>s
|
111
|
+
%<fi>s-%<ln>s@%<dn>s
|
112
|
+
%<fn>s-%<li>s@%<dn>s
|
113
|
+
%<fi>s-%<li>s@%<dn>s
|
114
|
+
%<ln>s-%<fn>s@%<dn>s
|
115
|
+
%<ln>s-%<fi>s@%<dn>s
|
116
|
+
%<li>s-%<fn>s@%<dn>s
|
117
|
+
%<li>s-%<fi>s@%<dn>s
|
118
|
+
%<fi>s%<mi>s-%<ln>s@%<dn>s
|
119
|
+
%<fn>s-%<mi>s-%<ln>s@%<dn>s
|
120
|
+
%<fn>s-%<mn>s-%<ln>s@%<dn>s
|
121
|
+
%<fn>s_%<ln>s@%<dn>s
|
122
|
+
%<fi>s_%<ln>s@%<dn>s
|
123
|
+
%<fn>s_%<li>s@%<dn>s
|
124
|
+
%<fi>s_%<li>s@%<dn>s
|
125
|
+
%<ln>s_%<fn>s@%<dn>s
|
126
|
+
%<ln>s_%<fi>s@%<dn>s
|
127
|
+
%<li>s_%<fn>s@%<dn>s
|
128
|
+
%<li>s_%<fi>s@%<dn>s
|
129
|
+
%<fi>s%<mi>s_%<ln>s@%<dn>s
|
130
|
+
%<fn>s_%<mi>s_%<ln>s@%<dn>s
|
131
|
+
%<fn>s_%<mn>s_%<ln>s@%<dn>s
|
132
|
+
%<mn>s@%<dn>s
|
85
133
|
"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guessmail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kerem Bozdas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tate
|
@@ -16,56 +16,84 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 1.7.0
|
20
20
|
type: :runtime
|
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: 1.7.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '0'
|
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: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rspec
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: standardrb
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: coveralls_reborn
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
67
95
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
96
|
+
version: '0'
|
69
97
|
description: Find anyone's email address
|
70
98
|
email:
|
71
99
|
- krmbzds.github@gmail.com
|
@@ -74,12 +102,13 @@ executables:
|
|
74
102
|
extensions: []
|
75
103
|
extra_rdoc_files: []
|
76
104
|
files:
|
105
|
+
- ".github/workflows/publish.yml"
|
106
|
+
- ".github/workflows/test.yml"
|
77
107
|
- ".gitignore"
|
78
108
|
- ".rspec"
|
79
|
-
- ".
|
80
|
-
- ".ruby-version"
|
81
|
-
- ".travis.yml"
|
109
|
+
- ".tool-versions"
|
82
110
|
- Gemfile
|
111
|
+
- LICENSE.txt
|
83
112
|
- README.md
|
84
113
|
- Rakefile
|
85
114
|
- bin/console
|
@@ -107,8 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
136
|
- !ruby/object:Gem::Version
|
108
137
|
version: '0'
|
109
138
|
requirements: []
|
110
|
-
|
111
|
-
rubygems_version: 2.5.1
|
139
|
+
rubygems_version: 3.3.7
|
112
140
|
signing_key:
|
113
141
|
specification_version: 4
|
114
142
|
summary: Find anyone's email address
|
data/.ruby-gemset
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
guessmail
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
ruby-2.3.0
|
data/.travis.yml
DELETED